AtlAxWinInit dummy implementation.

oldstable
Vitaly Lipatov 2005-11-07 16:38:31 +00:00 committed by Alexandre Julliard
parent a1cd3ab653
commit 63ad711089
2 changed files with 17 additions and 1 deletions

View File

@ -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

View File

@ -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;