Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / arch / .unmaintained / m68k-pp-native / battclock / battclock_intern.h
blobe0edc5dc24978ac44dea58c1acab9033681c65bb
1 /*
2 Copyright © 1995-2001, 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 EXEC_TYPES_H
10 #include <exec/types.h>
11 #endif
12 #ifndef EXEC_NODES_H
13 #include <exec/nodes.h>
14 #endif
15 #ifndef UTILITY_UTILITY_H
16 #include <utility/utility.h>
17 #endif
18 #ifndef HIDD_HIDD_H
19 #include <hidd/hidd.h>
20 #endif
22 struct BattClockBase
24 struct Node bb_Node;
25 struct ExecBase *bb_SysBase;
26 struct UtilityBase *bb_UtilBase;
29 #define SysBase (BattClockBase->bb_SysBase)
30 #ifdef UtilityBase
31 #undef UtilityBase
32 #endif
33 #define UtilityBase (BattClockBase->bb_UtilBase)