How do I catch a ctrl-c event in C++?
|
1
|
|||||||
|
|
|
|
||
|
|
|
You have to catch the SIGINT signal (we are talking POSIX right?) See @Gab Royer´s answer for sigaction. Example:
|
|||
|
|
IMHO it's platform dependent. |
|||
|
|
|
Yeah, this is a platform dependent question. If you are writing a console program on POSIX, use the signal API (#include ). In a WIN32 GUI application you should handle the WM_KEYDOWN message. |
|||
|
|
|
|
For a Windows console app, you want to use SetConsoleCtrlHandler to handle CTRL+C and CTRL+BREAK. See here for an example. |
||
|
|
