start: Handle /B & /I options.

This commit is contained in:
Austin English 2009-08-02 19:34:00 -05:00 committed by Alexandre Julliard
parent c257ef317b
commit 6deaa09887
1 changed files with 6 additions and 0 deletions

View File

@ -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();