Thomas Faber : shdocvw: Add missing parameter to RunInstallUninstallStubs2.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Oct 30 08:22:26 CDT 2015


Module: wine
Branch: master
Commit: 6fcc923e4ce4131f0f0c1e4c69be4ff1d60fe2d0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6fcc923e4ce4131f0f0c1e4c69be4ff1d60fe2d0

Author: Thomas Faber <thomas.faber at reactos.org>
Date:   Fri Oct 30 10:47:37 2015 +0100

shdocvw: Add missing parameter to RunInstallUninstallStubs2.

Emerge Desktop calls this with one parameter of type int.

Signed-off-by: Thomas Faber <thomas.faber at reactos.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shdocvw/shdocvw.spec   | 2 +-
 dlls/shdocvw/shdocvw_main.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/shdocvw/shdocvw.spec b/dlls/shdocvw/shdocvw.spec
index 93f4444..0d581b2 100644
--- a/dlls/shdocvw/shdocvw.spec
+++ b/dlls/shdocvw/shdocvw.spec
@@ -20,7 +20,7 @@
 123 stdcall -noname StopWatchAFORWARD(long str long long long)
 124 stdcall -noname StopWatchWFORWARD(long wstr long long long)
 125 stdcall -noname RunInstallUninstallStubs()
-130 stdcall -noname RunInstallUninstallStubs2()
+130 stdcall -noname RunInstallUninstallStubs2(long)
 131 stub -noname SHCreateSplashScreen
 135 stub -noname IsFileUrl
 136 stub -noname IsFileUrlW
diff --git a/dlls/shdocvw/shdocvw_main.c b/dlls/shdocvw/shdocvw_main.c
index efeb08f..5d89f77 100644
--- a/dlls/shdocvw/shdocvw_main.c
+++ b/dlls/shdocvw/shdocvw_main.c
@@ -258,9 +258,9 @@ DWORD WINAPI RunInstallUninstallStubs(void)
  *
  * Called by Emerge Desktop (alternative Windows Shell).
  */
-DWORD WINAPI RunInstallUninstallStubs2(void)
+DWORD WINAPI RunInstallUninstallStubs2(int arg)
 {
-    FIXME("(), stub!\n");
+    FIXME("(%d), stub!\n", arg);
     return 0x0deadbee;
 }
 




More information about the wine-cvs mailing list