How do I catch a ctrl-c event in C++?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
|||||||||||
|
|
For a Windows console app, you want to use SetConsoleCtrlHandler to handle CTRL+C and CTRL+BREAK. See here for an example. |
|||
|
|
|
You have to catch the SIGINT signal (we are talking POSIX right?) See @Gab Royer´s answer for sigaction. Example:
|
||||
|
For whatever it's worth, here's how I did it in my program:
I tested it, and it works. |
|||
|
|
|
Yeah, this is a platform dependent question. If you are writing a console program on POSIX, use the signal API (#include <signal.h>). In a WIN32 GUI application you should handle the WM_KEYDOWN message. |
||||
|
|