diff --git a/dlls/atl/atl.spec b/dlls/atl/atl.spec index d1da1046dd5..3d35e1422dd 100644 --- a/dlls/atl/atl.spec +++ b/dlls/atl/atl.spec @@ -33,7 +33,7 @@ 39 stub AtlAxCreateControl 40 stub AtlAxCreateControlEx 41 stub AtlAxAttachControl -42 stub AtlAxWinInit +42 stdcall AtlAxWinInit() 43 stub AtlModuleAddCreateWndData 44 stub AtlModuleExtractCreateWndData 45 stub AtlModuleRegisterWndClassInfoW diff --git a/dlls/atl/atl_main.c b/dlls/atl/atl_main.c index 49448b61268..2ef7be06375 100644 --- a/dlls/atl/atl_main.c +++ b/dlls/atl/atl_main.c @@ -165,6 +165,22 @@ HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEA* pM, BOOL bUnRegTypeLib, return S_OK; } +/*********************************************************************** + * AtlAxWinInit [ATL.@] + * Initializes the control-hosting code: registering the AtlAxWin7 and AtlAxWinLic7 window + * classes and some messages. + * + * RETURNS + * TRUE or FALSE + */ + +HRESULT WINAPI AtlAxWinInit(void) +{ + FIXME("Try use native atl.dll if possible\n"); + return E_FAIL; +} + + HRESULT WINAPI AtlInternalQueryInterface(LPVOID this, const _ATL_INTMAP_ENTRY* pEntries, REFIID iid, LPVOID* ppvObject) { int i = 0;