home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / utility / date.h next >
Encoding:
C/C++ Source or Header  |  1997-03-12  |  480 b   |  28 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H
  3.  
  4. /*******************************************************************
  5.  pOS / Amiga adapt
  6. *******************************************************************/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11.  
  12. #ifdef __IGNORE_NOT_SUPPORTED__
  13.  
  14. struct ClockData
  15. {
  16.   UWORD sec;
  17.   UWORD min;
  18.   UWORD hour;
  19.   UWORD mday;
  20.   UWORD month;
  21.   UWORD year;
  22.   UWORD wday;
  23. };
  24.  
  25. #endif /** __IGNORE_NOT_SUPPORTED__ **/
  26.  
  27. #endif /* UTILITY_DATE_H */
  28.