home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Controlc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  418 b   |  22 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __CONTROLC_H
  7. #define __CONTROLC_H 1
  8.  
  9. #if __cplusplus
  10. extern "C"
  11.   {
  12. #endif
  13. void __cdecl controlc_open(void);
  14. void __cdecl controlc_close(void);
  15. typedef void (__cdecl * _controlc_handler_t)(void);
  16. _controlc_handler_t __cdecl _controlc_handler;
  17. #if __cplusplus
  18.   }
  19. #endif
  20.  
  21. #endif
  22.