atl90: Trace ATL version.

This commit is contained in:
Qian Hong 2013-10-17 02:42:12 +08:00 committed by Alexandre Julliard
parent 6611068b5b
commit 8c33b912a3
1 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl);
*/ */
DWORD WINAPI AtlGetVersion(void *reserved) DWORD WINAPI AtlGetVersion(void *reserved)
{ {
return _ATL_VER; TRACE("version %04x (%p)\n", _ATL_VER, reserved);
return _ATL_VER;
} }
/********************************************************************** /**********************************************************************
@ -65,7 +66,7 @@ BOOL WINAPI AtlAxWinInit(void)
const WCHAR AtlAxWin90[] = {'A','t','l','A','x','W','i','n','9','0',0}; const WCHAR AtlAxWin90[] = {'A','t','l','A','x','W','i','n','9','0',0};
const WCHAR AtlAxWinLic90[] = {'A','t','l','A','x','W','i','n','L','i','c','9','0',0}; const WCHAR AtlAxWinLic90[] = {'A','t','l','A','x','W','i','n','L','i','c','9','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;