hhctrl.ocx: Added DllGetClassObject stub implementation.

This commit is contained in:
Jacek Caban 2007-02-28 03:51:04 +01:00 committed by Alexandre Julliard
parent 74fffe66e4
commit 8e98ca4727
2 changed files with 10 additions and 0 deletions

View file

@ -163,3 +163,12 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
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;
}

View file

@ -1,5 +1,6 @@
13 stdcall doWinMain(long ptr)
14 stdcall HtmlHelpA(ptr ptr long long)
15 stdcall HtmlHelpW(ptr ptr long long)
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()