home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
useful
/
cbm
/
nduk
/
nduk-v39
/
include
/
utility
/
date.h
next >
Wrap
C/C++ Source or Header
|
1992-09-24
|
702b
|
40 lines
#ifndef UTILITY_DATE_H
#define UTILITY_DATE_H
/*
** $VER: date.h 39.1 (20.01.92)
** Includes Release 39.108
**
** 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 /* UTILITY_DATE_H */