home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pLib / SpTimer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  1.1 KB  |  36 lines

  1. #ifndef __INC_POS_PLIB_SPTIMER_H
  2. #define __INC_POS_PLIB_SPTIMER_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>SpTimer.h<<   14 Sep 1996    09:55:53 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_DEVICE_H
  12. #include "p:pExec/Device.h"
  13. #endif
  14.  
  15. extern struct pOS_TimerDevice *gb_TimerBase;
  16.  
  17. /*----------------------------------
  18. -----------------------------------*/
  19. struct pOS_TimerLibFunction
  20. {
  21.  
  22.   SLONG (*pOS_CmpTime_func)(_R_LB pOS_TimerDevice*,_R_A0 const pOS_TimeVal*,_R_A1 const pOS_TimeVal*);
  23.   UBYTE _d3[8];
  24.   VOID  (*pOS_SubTime_func)(_R_LB pOS_TimerDevice*,_R_A0 pOS_TimeVal*,_R_A1 const pOS_TimeVal*);
  25.   UBYTE _d2[8];
  26.   VOID  (*pOS_AddTime_func)(_R_LB pOS_TimerDevice*,_R_A0 pOS_TimeVal*,_R_A1 const pOS_TimeVal*);
  27.   UBYTE _d1[8];
  28.   VOID  (*pOS_GetSysTime_func)(_R_LB pOS_TimerDevice*,_R_A0 pOS_TimeVal*);
  29.   UBYTE _d0[8];
  30.  
  31.   pOS_StdDeviceFunction StdDev;
  32. }; /* => Base */
  33.  
  34.  
  35. #endif
  36.