home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / utility / date.h next >
C/C++ Source or Header  |  1992-09-24  |  702b  |  40 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H
  3. /*
  4. **    $VER: date.h 39.1 (20.01.92)
  5. **    Includes Release 39.108
  6. **
  7. **    Date conversion routines ClockData definition.
  8. **
  9. **    (C) Copyright 1989-1992 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.