home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / STK100.ZIP / STKSRC.COM / GR_INT9.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-20  |  1006 b   |  26 lines

  1. /**********************************************************************
  2. * gr_int9.c
  3. *
  4. * New keyboard interrupt service routine.
  5. * MUST BE COMPILED WITHOUT STACK CHECKS AND REGISTER VARIABLES
  6. **********************************************************************
  7.                     This file is part of
  8.  
  9.          STK -- The sprite toolkit -- version 1.0
  10.  
  11.               Copyright (C) Jari Karjala 1990
  12.  
  13. The sprite toolkit (STK) is a FreeWare toolkit for creating high
  14. resolution sprite graphics with PCompatible hardware. This toolkit 
  15. is provided as is without any warranty or such thing. See the file
  16. COPYING for further information.
  17.  
  18. **********************************************************************
  19. **********************************************************************/
  20.  
  21. /** Vector to the old keyboard interrupt handler **/
  22. extern void interrupt (*gr_old_int9)(void);
  23.  
  24. /** The new keyboard interrupt handler, see start_kbd_grab() in gr.c **/
  25. void interrupt gr_int9(void);
  26.