diff --git a/sim_console.c b/sim_console.c index bf023c49..3bffbf42 100644 --- a/sim_console.c +++ b/sim_console.c @@ -930,6 +930,13 @@ static HANDLE std_input; static HANDLE std_output; static DWORD saved_mode; +/* Note: This routine catches all the potential events which some aspect + of the windows system can generate. The CTRL_C_EVENT won't be + generated by a user typing in a console session since that + session is in RAW mode. In general, Ctrl-C on a simulator's + console terminal is a useful character to be passed to the + simulator. This code does nothing to disable or affect that. */ + static BOOL WINAPI ControlHandler(DWORD dwCtrlType) {