Qian Hong : atl110: Trace ATL version.
Module: wine Branch: master Commit: 37a8e0c2f243fb7cc2913c798844a1186e47b9d7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=37a8e0c2f243fb7cc2913c7988... Author: Qian Hong <qhong(a)codeweavers.com> Date: Thu Oct 17 02:42:41 2013 +0800 atl110: Trace ATL version. --- dlls/atl110/atl110.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/atl110/atl110.c b/dlls/atl110/atl110.c index f704bd9..707b43b 100644 --- a/dlls/atl110/atl110.c +++ b/dlls/atl110/atl110.c @@ -37,6 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl); */ DWORD WINAPI AtlGetVersion(void *pReserved) { + TRACE("version %04x (%p)\n", _ATL_VER, pReserved); return _ATL_VER; } @@ -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 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) ) ) return FALSE;
participants (1)
-
Alexandre Julliard