home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d128
/
mrbackup
/
mrdates.h
< prev
next >
Wrap
C/C++ Source or Header
|
1988-01-02
|
663b
|
27 lines
/* Filename: MRDates.h
* Various definitions used to support the MRDates package.
*
* Important note:
* If the preprocessor symbol MRDATES is undefined, certain
* useful structures will be declared for use by the module
* including this file.
*/
#include <exec/types.h>
typedef struct {
short year,month,day,hour,minute,second;
} UnpackedDS;
#ifndef MRDATES /* This is not MRDates.c? */
extern char *daynames[7]; /* day name strings, [0] = "Sunday" */
extern USHORT monthdays[12];/* Number of days preceding each month,
* requires diddling for leap years.
*/
extern char *monthnames[12];/* [0] = January */
#endif