Added stubs for DllInstall and DllRegisterServer.

This commit is contained in:
Stefan Leichter 2004-07-16 23:21:16 +00:00 committed by Alexandre Julliard
parent 6a9cc38d9e
commit 1e00ad2477
2 changed files with 20 additions and 2 deletions

View file

@ -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;
}

View file

@ -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