programs/start: use SEE_MASK_NO_CONSOLE flag as default.
Allows to start console applications in a new window (as Windows does).
This commit is contained in:
parent
728bfd6d58
commit
72d5e7cd36
|
@ -136,7 +136,9 @@ int main(int argc, char *argv[])
|
||||||
sei.lpVerb = "open";
|
sei.lpVerb = "open";
|
||||||
sei.nShow = SW_SHOWNORMAL;
|
sei.nShow = SW_SHOWNORMAL;
|
||||||
/* Dunno what these mean, but it looks like winMe's start uses them */
|
/* Dunno what these mean, but it looks like winMe's start uses them */
|
||||||
sei.fMask = SEE_MASK_FLAG_DDEWAIT|SEE_MASK_FLAG_NO_UI;
|
sei.fMask = SEE_MASK_FLAG_DDEWAIT|
|
||||||
|
SEE_MASK_FLAG_NO_UI|
|
||||||
|
SEE_MASK_NO_CONSOLE;
|
||||||
|
|
||||||
/* Canonical Microsoft commandline flag processing:
|
/* Canonical Microsoft commandline flag processing:
|
||||||
* flags start with /, are case insensitive,
|
* flags start with /, are case insensitive,
|
||||||
|
|
Loading…
Reference in New Issue