Commit f8077a56 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

inseng: Add a stub for DllInstall.

parent 843390f9
......@@ -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
......
......@@ -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;
}
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