AtlAxWinInit dummy implementation.
This commit is contained in:
parent
a1cd3ab653
commit
63ad711089
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue