Commit 72d5e7cd authored by Kirill K. Smirnov's avatar Kirill K. Smirnov Committed by Alexandre Julliard

programs/start: use SEE_MASK_NO_CONSOLE flag as default.

Allows to start console applications in a new window (as Windows does).
parent 728bfd6d
......@@ -136,7 +136,9 @@ int main(int argc, char *argv[])
sei.lpVerb = "open";
sei.nShow = SW_SHOWNORMAL;
/* 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:
* flags start with /, are case insensitive,
......
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