inetcpl: Add stub for DllInstall.
This commit is contained in:
parent
f135f18b58
commit
0ff72271d1
|
@ -60,6 +60,15 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DllInstall (inetcpl.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
|
||||||
|
{
|
||||||
|
FIXME("(%s, %s): stub\n", bInstall ? "TRUE" : "FALSE", debugstr_w(cmdline));
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* propsheet_callback [internal]
|
* propsheet_callback [internal]
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
@ stub AddInternetPropertySheetsEx
|
@ stub AddInternetPropertySheetsEx
|
||||||
@ stdcall CPlApplet(long long long long)
|
@ stdcall CPlApplet(long long long long)
|
||||||
@ stub DisplayPopupWindowManagementDialog
|
@ stub DisplayPopupWindowManagementDialog
|
||||||
@ stub DllInstall
|
@ stdcall -private DllInstall(long wstr)
|
||||||
@ stub GetAddSitesDisplayUrl
|
@ stub GetAddSitesDisplayUrl
|
||||||
@ stub ImportExportPFX
|
@ stub ImportExportPFX
|
||||||
@ stub LaunchAddSitesDialog
|
@ stub LaunchAddSitesDialog
|
||||||
|
|
Loading…
Reference in New Issue