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

@@ -46,7 +46,7 @@ struct Process {
char platform[6 * 8];
};
Process RunCmd(String command_line, String working_dir);
Process CreateCommandLineProcess(String command_line, String working_dir);
bool WaitForExit(Process *process);
bool PollExitCode(Process *process);
void KillProcess(Process *process);