Vincent Povirk : start: Don't use SEE_MASK_NO_CONSOLE.

Alexandre Julliard julliard at winehq.org
Fri Apr 25 14:15:24 CDT 2014


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

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Tue Apr 22 12:47:29 2014 -0500

start: Don't use SEE_MASK_NO_CONSOLE.

---

 programs/start/start.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/programs/start/start.c b/programs/start/start.c
index 7bf8ea8..9f2c3f7 100644
--- a/programs/start/start.c
+++ b/programs/start/start.c
@@ -216,8 +216,7 @@ int wmain (int argc, WCHAR *argv[])
 	sei.nShow = SW_SHOWNORMAL;
 	/* Dunno what these mean, but it looks like winMe's start uses them */
 	sei.fMask = SEE_MASK_FLAG_DDEWAIT|
-	            SEE_MASK_FLAG_NO_UI|
-	            SEE_MASK_NO_CONSOLE;
+	            SEE_MASK_FLAG_NO_UI;
         sei.lpDirectory = NULL;
         creation_flags = CREATE_NEW_CONSOLE;
 




More information about the wine-cvs mailing list