-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-with-console.cpp
More file actions
42 lines (35 loc) · 1.37 KB
/
run-with-console.cpp
File metadata and controls
42 lines (35 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <windows.h>
#include <stdio.h>
int main() {
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory(&pi, sizeof(pi));
// Start the child process
if (!CreateProcess("build-ninja\\src\\admin\\mirage-admin.exe",
NULL, // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
CREATE_NEW_CONSOLE, // Creation flags
NULL, // Use parent's environment block
"build-ninja\\src\\admin", // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi) // Pointer to PROCESS_INFORMATION structure
) {
printf("CreateProcess failed (%d).\n", GetLastError());
getchar();
return 1;
}
// Wait until child process exits
WaitForSingleObject(pi.hProcess, 10000); // Wait 10 seconds
DWORD exitCode;
GetExitCodeProcess(pi.hProcess, &exitCode);
printf("Process exited with code: %d\n", exitCode);
// Close process and thread handles
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
getchar();
return 0;
}