Commit 63ad7110 authored by Vitaly Lipatov's avatar Vitaly Lipatov Committed by Alexandre Julliard

AtlAxWinInit dummy implementation.

parent a1cd3ab6
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
39 stub AtlAxCreateControl 39 stub AtlAxCreateControl
40 stub AtlAxCreateControlEx 40 stub AtlAxCreateControlEx
41 stub AtlAxAttachControl 41 stub AtlAxAttachControl
42 stub AtlAxWinInit 42 stdcall AtlAxWinInit()
43 stub AtlModuleAddCreateWndData 43 stub AtlModuleAddCreateWndData
44 stub AtlModuleExtractCreateWndData 44 stub AtlModuleExtractCreateWndData
45 stub AtlModuleRegisterWndClassInfoW 45 stub AtlModuleRegisterWndClassInfoW
......
...@@ -165,6 +165,22 @@ HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEA* pM, BOOL bUnRegTypeLib, ...@@ -165,6 +165,22 @@ HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEA* pM, BOOL bUnRegTypeLib,
return S_OK; 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) HRESULT WINAPI AtlInternalQueryInterface(LPVOID this, const _ATL_INTMAP_ENTRY* pEntries, REFIID iid, LPVOID* ppvObject)
{ {
int i = 0; int i = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment