Commit 6deaa098 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

start: Handle /B & /I options.

parent c257ef31
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment