Commit 0ff72271 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

inetcpl: Add stub for DllInstall.

parent f135f18b
......@@ -60,6 +60,15 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
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]
*
......
......@@ -3,7 +3,7 @@
@ stub AddInternetPropertySheetsEx
@ stdcall CPlApplet(long long long long)
@ stub DisplayPopupWindowManagementDialog
@ stub DllInstall
@ stdcall -private DllInstall(long wstr)
@ stub GetAddSitesDisplayUrl
@ stub ImportExportPFX
@ stub LaunchAddSitesDialog
......
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