home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / utility / date.h next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  466 b   |  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.