NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices diskfont dos datetime.h / .i dos.h / .i dos_lib.i dosasl.h / .i dosextens.h / .i doshunks.h / .i dostags.h / .i exall.h / .i filehandler.h / .i notify.h / .i rdargs.h / .i record.h / .i stdio.h / .i var.h / .i exec gadgets graphics hardware images intuition libraries pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef DOS_DATETIME_H #define DOS_DATETIME_H /* ** $VER: datetime.h 45.1 (17.12.2001) ** Includes Release 45.1 ** ** Date and time C header for AmigaDOS ** ** (C) Copyright 1989-2001 Amiga, Inc. ** All Rights Reserved ** */ #ifndef DOS_DOS_H #include <dos/dos.h> #endif /* * Data structures and equates used by the V1.4 DOS functions * StrtoDate() and DatetoStr() */ /*--------- String/Date structures etc */ struct DateTime { struct DateStamp dat_Stamp; /* DOS DateStamp */ UBYTE dat_Format; /* controls appearance of dat_StrDate */ UBYTE dat_Flags; /* see BITDEF's below */ UBYTE *dat_StrDay; /* day of the week string */ UBYTE *dat_StrDate; /* date string */ UBYTE *dat_StrTime; /* time string */ }; /* You need this much room for each of the DateTime strings: */ #define LEN_DATSTRING 16 /* flags for dat_Flags */ #define DTB_SUBST 0 /* substitute Today, Tomorrow, etc. */ #define DTF_SUBST 1 #define DTB_FUTURE 1 /* day of the week is in future */ #define DTF_FUTURE 2 /* * date format values */ #define FORMAT_DOS 0 /* dd-mmm-yy */ #define FORMAT_INT 1 /* yy-mm-dd */ #define FORMAT_USA 2 /* mm-dd-yy */ #define FORMAT_CDN 3 /* dd-mm-yy */ #define FORMAT_MAX FORMAT_CDN #define FORMAT_DEF 4 /* use default format, as defined by locale; if locale not available, use FORMAT_DOS instead */ #endif /* DOS_DATETIME_H */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |