Commit 37a8e0c2 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

atl110: Trace ATL version.

parent 6c8a2ba7
...@@ -37,6 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl); ...@@ -37,6 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl);
*/ */
DWORD WINAPI AtlGetVersion(void *pReserved) DWORD WINAPI AtlGetVersion(void *pReserved)
{ {
TRACE("version %04x (%p)\n", _ATL_VER, pReserved);
return _ATL_VER; return _ATL_VER;
} }
...@@ -65,7 +66,7 @@ BOOL WINAPI AtlAxWinInit(void) ...@@ -65,7 +66,7 @@ BOOL WINAPI AtlAxWinInit(void)
const WCHAR AtlAxWin110[] = {'A','t','l','A','x','W','i','n','1','1','0',0}; const WCHAR AtlAxWin110[] = {'A','t','l','A','x','W','i','n','1','1','0',0};
const WCHAR AtlAxWinLic110[] = {'A','t','l','A','x','W','i','n','L','i','c','1','1','0',0}; const WCHAR AtlAxWinLic110[] = {'A','t','l','A','x','W','i','n','L','i','c','1','1','0',0};
FIXME("semi-stub\n"); FIXME("version %04x semi-stub\n", _ATL_VER);
if ( FAILED( OleInitialize(NULL) ) ) if ( FAILED( OleInitialize(NULL) ) )
return FALSE; return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment