atl: Added AtlGetVersion implementation.

This commit is contained in:
Jacek Caban 2012-11-21 11:11:56 +01:00 committed by Alexandre Julliard
parent 84587b689e
commit 8cfe856b17
2 changed files with 9 additions and 1 deletions

View File

@ -25,7 +25,7 @@
30 stdcall AtlComPtrAssign(ptr ptr) atl100.AtlComPtrAssign
31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl100.AtlComQIPtrAssign
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl100.AtlInternalQueryInterface
34 stub AtlGetVersion
34 stdcall AtlGetVersion(ptr)
35 stub AtlAxDialogBoxW
36 stub AtlAxDialogBoxA
37 stdcall AtlAxCreateDialogW(long wstr long ptr long) atl100.AtlAxCreateDialogW

View File

@ -472,3 +472,11 @@ void* WINAPI AtlModuleExtractCreateWndData(_ATL_MODULEW *pM)
}
return NULL;
}
/***********************************************************************
* AtlGetVersion [ATL.@]
*/
DWORD WINAPI AtlGetVersion(void *pReserved)
{
return 0x0300;
}