mirror of
https://github.com/curl/curl.git
synced 2026-08-01 17:20:30 +03:00
main_window_proc
This commit is contained in:
parent
68d35b45c6
commit
db58e29fa5
1 changed files with 7 additions and 0 deletions
|
|
@ -505,7 +505,14 @@ static LRESULT CALLBACK main_window_proc(HWND hwnd, UINT uMsg,
|
|||
break;
|
||||
}
|
||||
if(signum) {
|
||||
#ifdef DEBUG_WIN32_CALLBACKS
|
||||
logmsg("main_window_proc: %u -> %d", uMsg, signum);
|
||||
#else
|
||||
static const char str[] = "main_window_proc\n";
|
||||
DWORD dwWritten;
|
||||
WriteFile(GetStdHandle(STD_ERROR_HANDLE), str, sizeof(str) - 1,
|
||||
&dwWritten, NULL);
|
||||
#endif
|
||||
raise(signum);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue