winetest: don't start test programs with STARTUPINFO.wShowWindow = SW_HIDE

Mikołaj Zalewski mikolaj at zalewski.pl
Sat Oct 14 13:51:59 CDT 2006


It no one knowns why this option is there then maybe it's safe to remove it?
-------------- next part --------------
diff --git a/programs/winetest/main.c b/programs/winetest/main.c
index 796d542..c1fc50c 100644
--- a/programs/winetest/main.c
+++ b/programs/winetest/main.c
@@ -277,8 +277,7 @@ run_ex (char *cmd, const char *out, DWOR
     DWORD wait, status;
 
     GetStartupInfo (&si);
-    si.wShowWindow = SW_HIDE;
-    si.dwFlags = STARTF_USESHOWWINDOW;
+    si.dwFlags = 0;
 
     if (out) {
         fd = open (out, O_WRONLY | O_CREAT, 0666);
-- 
1.4.2.3


More information about the wine-patches mailing list