mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
inseng: Add a stub for DllInstall.
This commit is contained in:
parent
843390f9c9
commit
f8077a5697
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user