Clang format, mouse rebind

This commit is contained in:
Krzosa Karol
2024-08-12 13:45:58 +02:00
parent 3251df6068
commit 2b48f30cfe
9 changed files with 155 additions and 52 deletions

View File

@@ -51,8 +51,9 @@ struct Process {
};
Process CreateCommandLineProcess(String command_line, String working_dir);
bool WaitForExit(Process *process);
bool PollExitCode(Process *process);
void CloseProcess(Process *process);
void KillProcess(Process *process);
StdoutPollInfo PollStdout(Process *process, char *buffer, int64_t buffer_size);
StdoutPollInfo PollStdout(Process *process, char *buffer, int64_t buffer_size);
void WriteStdin(Process *process, String string);
void CloseStdin(Process *process);