[PATCH 3/5] start.exe: Pass the "show window" flags to CreateProcess() too

Damjan Jovanovic damjan.jov at gmail.com
Sat Aug 3 22:24:35 CDT 2019


Signed-off-by: Damjan Jovanovic <damjan.jov at gmail.com>
---
 programs/start/start.c | 1 +
 1 file changed, 1 insertion(+)
-------------- next part --------------
diff --git a/programs/start/start.c b/programs/start/start.c
index 8e40d5156c..6faa62e5b5 100644
--- a/programs/start/start.c
+++ b/programs/start/start.c
@@ -406,6 +406,7 @@ int wmain (int argc, WCHAR *argv[])
 
                     ZeroMemory(&startup_info, sizeof(startup_info));
                     startup_info.cb = sizeof(startup_info);
+                    startup_info.wShowWindow = sei.nShow;
                     startup_info.lpTitle = title;
 
                     if (!CreateProcessW(


More information about the wine-devel mailing list