home *** CD-ROM | disk | FTP | other *** search
- #ifndef UTILITY_DATE_H
- #define UTILITY_DATE_H 1
- /*
- ** $VER: date.h 36.2 (04.03.91)
- ** Includes Release 38.56
- **
- ** Date conversion routines ClockData definition.
- **
- ** (C) Copyright 1989-1992 Commodore-Amiga Inc.
- ** All Rights Reserved
- */
-
- #ifndef EXEC_TYPES_H
- #include "exec/types.h"
- #endif
-
- struct ClockData
- {
- UWORD sec;
- UWORD min;
- UWORD hour;
- UWORD mday;
- UWORD month;
- UWORD year;
- UWORD wday;
- };
-
- #endif
-