home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / win3 / patches / symantec / rtlinc.exe / CONTROLC.H < prev    next >
C/C++ Source or Header  |  1993-05-18  |  504b  |  26 lines

  1. /*
  2.  * controlc.h
  3.  *
  4.  * handles control C/Break under DOS and DOS16RM
  5.  * and OS/2 and DOS386
  6.  *
  7.  * written by: G. Eric Engstrom
  8.  */
  9.  
  10. #ifndef __CONTROLC_H
  11. #define __CONTROLC_H    1
  12.  
  13. #if __cplusplus
  14. extern "C"
  15.   {
  16. #endif
  17. void __cdecl controlc_open(void);    /* installs controlC/Break handler */
  18. void __cdecl controlc_close(void);    /* de installs controlC/Break handler */
  19.  
  20. void (__cdecl *_controlc_handler)(void);    /* user supplied function goes here */
  21. #if __cplusplus
  22.   }
  23. #endif
  24.  
  25. #endif
  26.