[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]

#ifndef UTILITY_DATE_H
#define UTILITY_DATE_H
/*
**      $VER: date.h 39.1 (20.1.1992)
**      Includes Release 44.1
**
**      Date conversion routines ClockData definition.
**
**      (C) Copyright 1989-1999 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 */