Hopefully better behavior when 4coder is the parent of GNU Make on Windows

master
Allen Webster 2017-11-27 17:37:50 -05:00
parent c27248dcf0
commit 5e0670ed27
1 changed files with 2 additions and 1 deletions

View File

@ -405,8 +405,9 @@ Sys_CLI_Call_Sig(system_cli_call){
STARTUPINFO startup = {};
startup.cb = sizeof(STARTUPINFO);
startup.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
startup.hStdError = out_write;
startup.hStdInput = INVALID_HANDLE_VALUE;
startup.hStdOutput = out_write;
startup.hStdError = out_write;
startup.wShowWindow = SW_HIDE;
PROCESS_INFORMATION info = {};