Qian Hong : atl80: Trace ATL version.
Module: wine Branch: master Commit: 6611068b5b37b77033583fb68df3c3f31347f9b5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6611068b5b37b77033583fb68d... Author: Qian Hong <qhong(a)codeweavers.com> Date: Thu Oct 17 02:41:58 2013 +0800 atl80: Trace ATL version. --- dlls/atl80/atl80.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/atl80/atl80.c b/dlls/atl80/atl80.c index b5d571b..487ee49 100644 --- a/dlls/atl80/atl80.c +++ b/dlls/atl80/atl80.c @@ -95,7 +95,8 @@ HRESULT WINAPI AtlRegisterTypeLib(HINSTANCE inst, const WCHAR *index) */ DWORD WINAPI AtlGetVersion(void *pReserved) { - return _ATL_VER; + TRACE("version %04x (%p)\n", _ATL_VER, pReserved); + return _ATL_VER; } /********************************************************************** @@ -123,7 +124,7 @@ BOOL WINAPI AtlAxWinInit(void) const WCHAR AtlAxWin80[] = {'A','t','l','A','x','W','i','n','8','0',0}; const WCHAR AtlAxWinLic80[] = {'A','t','l','A','x','W','i','n','L','i','c','8','0',0}; - FIXME("semi-stub\n"); + FIXME("version %04x semi-stub\n", _ATL_VER); if ( FAILED( OleInitialize(NULL) ) ) return FALSE;
participants (1)
-
Alexandre Julliard