home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD2.1 / includes / utility / date.h next >
Encoding:
C/C++ Source or Header  |  1992-09-11  |  416 b   |  29 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H 1
  3. /*
  4. **    $VER: date.h 36.2 (04.03.91)
  5. **    Includes Release 38.56
  6. **
  7. **    Date conversion routines ClockData definition.
  8. **
  9. **    (C) Copyright 1989-1992 Commodore-Amiga Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include "exec/types.h"
  15. #endif
  16.  
  17. struct ClockData
  18.     {
  19.     UWORD sec;
  20.     UWORD min;
  21.     UWORD hour;
  22.     UWORD mday;
  23.     UWORD month;
  24.     UWORD year;
  25.     UWORD wday;
  26.     };
  27.  
  28. #endif
  29.