Create process, poll and send output to console buffer

This commit is contained in:
Krzosa Karol
2024-08-07 07:51:50 +02:00
parent 7b8b8c751d
commit 327f352872
8 changed files with 51 additions and 17 deletions

View File

@@ -318,7 +318,7 @@ static void Win32ProcessError(Process *process, String cmd) {
Win32CloseProcess(process);
}
Process RunCmd(String command_line, String working_dir) {
Process CreateCommandLineProcess(String command_line, String working_dir) {
Process process = {};
Win32Process *p = (Win32Process *)process.platform;