Module: wine Branch: master Commit: 8e98ca4727b5ea3504ea671cebd35ffa65353538 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8e98ca4727b5ea3504ea671ceb...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Feb 28 03:51:04 2007 +0100
hhctrl.ocx: Added DllGetClassObject stub implementation.
---
dlls/hhctrl.ocx/hhctrl.c | 9 +++++++++ dlls/hhctrl.ocx/hhctrl.ocx.spec | 1 + 2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 15e38ef..b8c4f45 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -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; +} diff --git a/dlls/hhctrl.ocx/hhctrl.ocx.spec b/dlls/hhctrl.ocx/hhctrl.ocx.spec index 8d61a78..e9cd118 100644 --- a/dlls/hhctrl.ocx/hhctrl.ocx.spec +++ b/dlls/hhctrl.ocx/hhctrl.ocx.spec @@ -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()