programs/start: handle /B & /I options

Austin English austinenglish at gmail.com
Sun Aug 2 19:34:00 CDT 2009


Fixes bug 10912.

-- 
-Austin
-------------- next part --------------
diff --git a/programs/start/start.c b/programs/start/start.c
index e58d4c0..0c26cbc 100644
--- a/programs/start/start.c
+++ b/programs/start/start.c
@@ -214,6 +214,12 @@ int wmain (int argc, WCHAR *argv[])
 			/* Skip slash */
 			ci++;
 			switch(argv[i][ci]) {
+			case 'b':
+			case 'B':
+				break; /* FIXME: should stop new window from being created */
+			case 'i':
+			case 'I':
+				break; /* FIXME: should ignore any changes to current environment */
 			case 'l':
 			case 'L':
 				license();


More information about the wine-patches mailing list