home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / at-inc-bin.lha / os-include / utility / date.h next >
C/C++ Source or Header  |  1993-10-15  |  700b  |  40 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H
  3. /*
  4. **    $VER: date.h 39.1 (20.1.92)
  5. **    Includes Release 40.15
  6. **
  7. **    Date conversion routines ClockData definition.
  8. **
  9. **    (C) Copyright 1989-1993 Commodore-Amiga Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20.  
  21. /*****************************************************************************/
  22.  
  23.  
  24. struct ClockData
  25. {
  26.     UWORD sec;
  27.     UWORD min;
  28.     UWORD hour;
  29.     UWORD mday;
  30.     UWORD month;
  31.     UWORD year;
  32.     UWORD wday;
  33. };
  34.  
  35.  
  36. /*****************************************************************************/
  37.  
  38.  
  39. #endif /* UTILITY_DATE_H */
  40.