home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
cbm
/
os-include.lha
/
os-include
/
utility
/
date.h
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
700b
|
40 lines
#ifndef UTILITY_DATE_H
#define UTILITY_DATE_H
/*
** $VER: date.h 39.1 (20.1.92)
** Includes Release 40.15
**
** Date conversion routines ClockData definition.
**
** (C) Copyright 1989-1993 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 */