hhctrl.ocx: Added DllGetClassObject stub implementation.
This commit is contained in:
parent
74fffe66e4
commit
8e98ca4727
|
@ -163,3 +163,12 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************
|
||||||
|
* DllGetClassObject (hhctrl.ocx.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||||||
|
{
|
||||||
|
FIXME("(%s %s %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
||||||
|
return CLASS_E_CLASSNOTAVAILABLE;
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
13 stdcall doWinMain(long ptr)
|
13 stdcall doWinMain(long ptr)
|
||||||
14 stdcall HtmlHelpA(ptr ptr long long)
|
14 stdcall HtmlHelpA(ptr ptr long long)
|
||||||
15 stdcall HtmlHelpW(ptr ptr long long)
|
15 stdcall HtmlHelpW(ptr ptr long long)
|
||||||
|
@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
||||||
@ stdcall -private DllRegisterServer()
|
@ stdcall -private DllRegisterServer()
|
||||||
@ stdcall -private DllUnregisterServer()
|
@ stdcall -private DllUnregisterServer()
|
||||||
|
|
Loading…
Reference in New Issue