home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v37.lha / V37 / include / utility / date.h next >
C/C++ Source or Header  |  1991-11-27  |  467b  |  31 lines

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