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

  1. #ifndef __INC_POS_PDOS_DATE_H
  2. #define __INC_POS_PDOS_DATE_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>Date.h<<   12 Sep 1996    08:50:20 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PDOS_DOSTYPES_H
  12. #include <pDOS/DosTypes.h>
  13. #endif
  14.  
  15. /*----------------------------------
  16. -----------------------------------*/
  17. struct pOS_DateStamp
  18. {
  19.   ULONG  ds_Days;    /* Number of days since 1 Jan. 1992 */
  20.   UWORD  ds_Minute;  /* Number of minutes past midnight  */
  21.   UWORD  ds_Tick;    /* Number of ticks past minute      */
  22. };
  23.  
  24. #define pOS_TICKS_PER_SECOND   50   /* Number of ticks in one second */
  25.  
  26.  
  27. #endif
  28.