start: Handle /B & /I options.
This commit is contained in:
parent
c257ef317b
commit
6deaa09887
|
@ -214,6 +214,12 @@ int wmain (int argc, WCHAR *argv[])
|
||||||
/* Skip slash */
|
/* Skip slash */
|
||||||
ci++;
|
ci++;
|
||||||
switch(argv[i][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':
|
||||||
case 'L':
|
case 'L':
|
||||||
license();
|
license();
|
||||||
|
|
Loading…
Reference in New Issue