home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / timer_proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  476 b   |  18 lines

  1. /* $Header: pd:zvmrcs/timer_proto.h,v 1.1 1993/04/07 18:46:56 rvillari Exp $ */
  2. #ifndef _TIMER_PROTO_H
  3. #define _TIMER_PROTO_H
  4.  
  5. /* Timer i/o routines */
  6.  
  7. #include <devices/timer.h>
  8.  
  9. /* timer functions */
  10. struct timerequest *PrepareTimer();
  11. void DeleteTimer(struct timerequest*);
  12. void StartTimer(struct timerequest*, ULONG seconds, ULONG microseconds);
  13. void EndTimer(struct timerequest*);
  14. ULONG TimerSignal(struct timerequest*);
  15. struct timerequest * PrepareTimer(void);
  16.  
  17. #endif
  18.