From 7e85dd8c6b7109ae4b83821ca820e4249c802ee7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Thu, 8 Mar 2012 22:32:00 +0100 Subject: [PATCH] inetcpl: Add stub for DllInstall. (cherry picked from commit 0ff72271d1cd946747a1f475798f2d90dbcf1385) --- dlls/inetcpl.cpl/inetcpl.c | 9 +++++++++ dlls/inetcpl.cpl/inetcpl.cpl.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/inetcpl.cpl/inetcpl.c b/dlls/inetcpl.cpl/inetcpl.c index 6981277b6fd..e11bf854d09 100644 --- a/dlls/inetcpl.cpl/inetcpl.c +++ b/dlls/inetcpl.cpl/inetcpl.c @@ -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] * diff --git a/dlls/inetcpl.cpl/inetcpl.cpl.spec b/dlls/inetcpl.cpl/inetcpl.cpl.spec index 90f1d4322f4..2e59562ce57 100644 --- a/dlls/inetcpl.cpl/inetcpl.cpl.spec +++ b/dlls/inetcpl.cpl/inetcpl.cpl.spec @@ -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 -- 2.11.4.GIT