Date: Mon, 3 Apr 1995 16:03:53 +0300 From: eliz AT is DOT elta DOT co DOT il (Eli Zaretskii) To: PSHENKIN AT main DOT econ DOT msu DOT su Subject: Re: Help with CtrlBreak !!! Cc: djgpp AT sun DOT soe DOT clarkson DOT edu > I can`t disable standard Ctrl-Break handling in my programm. > Please help!!! Why do you have to do it in such a complicated way? There is a library routine called _go32_want_ctrl_break(), which does exactly what you want: it causes Ctrl-Break to do nothing except set a flag which can be tested with a call to a companion library function _go32_was_ctrl_break_hit(). Works for me every time I use it. Both these functions are documented in the libcref.i Info file. a call to a companion library function _go32_was_ctrl_break_hit(). Works for me every time I use it. Both these functions are documented in the libcref.i Info file.