| 933 | |
| 934 | static std::function<BOOL(DWORD)> s_ctrl_handler; |
| 935 | static BOOL ConsoleHandler(DWORD signal) { |
| 936 | if (s_ctrl_handler) { |
| 937 | return s_ctrl_handler(signal); |
| 938 | } |
| 939 | return FALSE; |
| 940 | } |
| 941 | |
| 942 | void WinApplication::CaptureControlC() { |
| 943 | s_ctrl_handler = [this](DWORD signal) -> BOOL { |
nothing calls this directly
no outgoing calls
no test coverage detected