home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 378.lha / MemEater_v1.0 / MemEater1 / MRTimer.h < prev   
C/C++ Source or Header  |  1990-05-02  |  697b  |  36 lines

  1. /* Timer support routine declarations.
  2.  * Filename:    MRTimer.h
  3.  */
  4.  
  5. #ifndef MRTIMER_H
  6. #define MRTIMER_H 1
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11.  
  12. #ifndef EXEC_IO_H
  13. #include <exec/io.h>
  14. #endif
  15.  
  16. #ifndef DEVICES_TIMER_H
  17. #include <devices/timer.h>
  18. #endif
  19.  
  20. #ifndef FUNCTIONS_H
  21. #include <functions.h>
  22. #endif
  23.  
  24. #ifndef __PARMS
  25. #include <parms.h>
  26. #endif
  27.  
  28. /* MRTimer.c */
  29. struct timerequest *CreateTimer __PARMS((short vBlank));
  30. void DeleteTimer __PARMS((struct timerequest *timeRequest));
  31. void StartTimer __PARMS((struct timerequest *timeRequest, 
  32.                          unsigned long seconds, unsigned long microSeconds));
  33. void StopTimer __PARMS((struct timerequest *timeRequest));
  34.  
  35. #endif
  36.