home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / TICKTRAP.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  394b  |  25 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  TICKTRAP.H - Trap the PC timer interrupt.
  5. **
  6. **  public domain by Bob Stout
  7. */
  8.  
  9. #ifndef TICKTRAP__H
  10. #define TICKTRAP__H
  11.  
  12. #include <stdlib.h>
  13. #include "extkword.h"
  14.  
  15. #ifdef __IS_ZORTECH__
  16.  #include <int.h>
  17. #else
  18.  #include "pchwio.h"
  19. #endif
  20.  
  21. void ticktrap(int (*fptr)(void));
  22. void tickchain(void);
  23.  
  24. #endif /* TICKTRAP__H */
  25.