Commit 1e00ad24 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Added stubs for DllInstall and DllRegisterServer.

parent 6a9cc38d
......@@ -160,3 +160,21 @@ INT WINAPI RunHTMLApplication( HINSTANCE hinst, HINSTANCE hPrevInst,
FIXME("%p %p %s %d\n", hinst, hPrevInst, debugstr_a(szCmdLine), nCmdShow );
return 0;
}
/***********************************************************************
* DllInstall (MSHTML.@)
*/
HRESULT WINAPI MSHTML_DllInstall(BOOL bInstall, LPCWSTR cmdline)
{
FIXME("stub %d %s: returning S_OK\n", bInstall, debugstr_w(cmdline));
return S_OK;
}
/***********************************************************************
* DllRegisterServer (MSHTML.@)
*/
HRESULT WINAPI MSHTML_DllRegisterServer(void)
{
FIXME("stub: returning S_OK\n");
return S_OK;
}
......@@ -2,8 +2,8 @@
@ stdcall -private DllCanUnloadNow() MSHTML_DllCanUnloadNow
@ stub DllEnumClassObjects
@ stdcall -private DllGetClassObject(ptr ptr ptr) MSHTML_DllGetClassObject
@ stub DllInstall
@ stub DllRegisterServer
@ stdcall DllInstall(long wstr) MSHTML_DllInstall
@ stdcall -private DllRegisterServer() MSHTML_DllRegisterServer
@ stub DllUnregisterServer
@ stub MatchExactGetIDsOfNames
@ stub PrintHTML
......
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