Show exit prompt in Windows when run from console
This commit is contained in:
parent
6835881e80
commit
8bbfb543b5
1 changed files with 15 additions and 0 deletions
15
main.c
15
main.c
|
@ -104,6 +104,19 @@ void require_admin()
|
|||
|
||||
fprintf(stderr, "Warning: failed to check administrator privileges\n");
|
||||
}
|
||||
|
||||
void show_exit_prompt()
|
||||
{
|
||||
HWND win = GetConsoleWindow();
|
||||
if (!win) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (GetCurrentProcessId() == GetWindowThreadProcessId(win, NULL)) {
|
||||
printf("\nPress any key to exit\n");
|
||||
getch();
|
||||
}
|
||||
}
|
||||
#else
|
||||
void require_admin()
|
||||
{
|
||||
|
@ -139,6 +152,8 @@ int main(int argc, char **argv)
|
|||
char *windir = NULL;
|
||||
WSADATA wsa;
|
||||
|
||||
atexit(&show_exit_prompt);
|
||||
|
||||
val = WSAStartup(MAKEWORD(2, 2), &wsa);
|
||||
if (val != 0) {
|
||||
win_perror2("WSAStartup", val);
|
||||
|
|
Loading…
Add table
Reference in a new issue