Workbook: big pile of rendering cleanups
[AROS.git] / arch / all-unix / battclock / battclock_intern.h
blobaf461aadacc0687227301a40b87ad32c9b14af2b
1 /*
2 Copyright 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Internal data structures for battclock.resource and HIDD
6 Lang: english
7 */
9 #ifndef BATTCLOCK_INTERN_H
10 #define BATTCLOCK_INTERN_H
12 #include <time.h>
14 #include <exec/libraries.h>
16 struct BattclockInterface
18 time_t (*time)(time_t *t);
19 struct tm *(*localtime)(const time_t *timep);
22 struct BattClockBase
24 struct Library bb_LibNode;
25 APTR Lib;
26 struct BattclockInterface *SysIFace;
29 #endif //BATTCLOCK_INTERN_H