home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASROTO.ZIP / TIMER.H < prev   
C/C++ Source or Header  |  1996-04-22  |  264b  |  15 lines

  1. #ifndef __TIMER_H
  2. #define __TIMER_H
  3.  
  4. extern "C"
  5. {
  6.   void tmInit();
  7.     #pragma aux tmInit modify [eax ebx edx]
  8.   void tmClose();
  9.     #pragma aux tmClose modify [eax edx]
  10.   unsigned long tmGetTimer();
  11.     #pragma aux tmGetTimer value [eax]
  12. };
  13.  
  14. #endif
  15.