#6383 Hide console window when in foreground mode
This commit is contained in:
parent
8ef2e7edbc
commit
25c2e360d3
|
@ -373,7 +373,7 @@ MSWindowsWatchdog::startProcessInForeground(String& command)
|
||||||
|
|
||||||
return CreateProcess(
|
return CreateProcess(
|
||||||
NULL, LPSTR(command.c_str()), NULL, NULL,
|
NULL, LPSTR(command.c_str()), NULL, NULL,
|
||||||
TRUE, 0, NULL, NULL, &si, &m_processInfo);
|
TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &m_processInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
|
|
Loading…
Reference in New Issue