home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / os-include / dos / datetime.h next >
C/C++ Source or Header  |  1993-10-15  |  1KB  |  55 lines

  1. #ifndef DOS_DATETIME_H
  2. #define DOS_DATETIME_H
  3.  
  4. /*
  5. **    $VER: datetime.h 36.7 (12.7.90)
  6. **    Includes Release 40.15
  7. **
  8. **    Date and time C header for AmigaDOS
  9. **
  10. **    (C) Copyright 1989-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. **
  13. */
  14.  
  15. #ifndef DOS_DOS_H
  16. #include "dos/dos.h"
  17. #endif
  18.  
  19. /*
  20.  *    Data structures and equates used by the V1.4 DOS functions
  21.  * StrtoDate() and DatetoStr()
  22.  */
  23.  
  24. /*--------- String/Date structures etc */
  25. struct DateTime {
  26.     struct DateStamp dat_Stamp;    /* DOS DateStamp */
  27.     UBYTE    dat_Format;        /* controls appearance of dat_StrDate */
  28.     UBYTE    dat_Flags;        /* see BITDEF's below */
  29.     UBYTE    *dat_StrDay;        /* day of the week string */
  30.     UBYTE    *dat_StrDate;        /* date string */
  31.     UBYTE    *dat_StrTime;        /* time string */
  32. };
  33.  
  34. /* You need this much room for each of the DateTime strings: */
  35. #define    LEN_DATSTRING    16
  36.  
  37. /*    flags for dat_Flags */
  38.  
  39. #define DTB_SUBST    0        /* substitute Today, Tomorrow, etc. */
  40. #define DTF_SUBST    1
  41. #define DTB_FUTURE    1        /* day of the week is in future */
  42. #define DTF_FUTURE    2
  43.  
  44. /*
  45.  *    date format values
  46.  */
  47.  
  48. #define FORMAT_DOS    0        /* dd-mmm-yy */
  49. #define FORMAT_INT    1        /* yy-mm-dd  */
  50. #define FORMAT_USA    2        /* mm-dd-yy  */
  51. #define FORMAT_CDN    3        /* dd-mm-yy  */
  52. #define FORMAT_MAX    FORMAT_CDN
  53.  
  54. #endif /* DOS_DATETIME_H */
  55.