Command_Append

This commit is contained in:
Krzosa Karol
2024-08-08 07:02:05 +02:00
parent bb44eab406
commit 161a9e3965
8 changed files with 37 additions and 35 deletions

View File

@@ -40,10 +40,11 @@ struct StdoutPollInfo {
};
struct Process {
bool is_valid;
String error_message;
int exit_code;
char platform[6 * 8];
bool is_valid;
String error_message;
int exit_code;
int64_t view_id; // text editor view
char platform[6 * 8];
};
Process CreateCommandLineProcess(String command_line, String working_dir);