inseng: Add a stub for DllInstall.

This commit is contained in:
Austin English 2012-07-05 08:46:22 -05:00 committed by Alexandre Julliard
parent 843390f9c9
commit f8077a5697
2 changed files with 10 additions and 1 deletions

View file

@ -3,7 +3,7 @@
@ stdcall CheckTrustEx(ptr ptr ptr ptr ptr)
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stub DllInstall
@ stdcall DllInstall(long wstr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stub DownloadFile

View file

@ -92,3 +92,12 @@ BOOL WINAPI CheckTrustEx( LPVOID a, LPVOID b, LPVOID c, LPVOID d, LPVOID e )
FIXME("%p %p %p %p %p\n", a, b, c, d, e );
return TRUE;
}
/***********************************************************************
* DllInstall (INSENG.@)
*/
HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
{
FIXME("(%s, %s): stub\n", bInstall ? "TRUE" : "FALSE", debugstr_w(cmdline));
return S_OK;
}