Module: wine Branch: master Commit: 8c33b912a3c2b19ac59e58c5145e2dc03a352b3b URL: http://source.winehq.org/git/wine.git/?a=commit;h=8c33b912a3c2b19ac59e58c514...
Author: Qian Hong qhong@codeweavers.com Date: Thu Oct 17 02:42:12 2013 +0800
atl90: Trace ATL version.
---
dlls/atl90/atl90.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dlls/atl90/atl90.c b/dlls/atl90/atl90.c index 1b46dcb..06e8066 100644 --- a/dlls/atl90/atl90.c +++ b/dlls/atl90/atl90.c @@ -37,7 +37,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl); */ 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 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) ) ) return FALSE;