Tabs to spaces, more consistent formatting.
[AROS.git] / workbench / libs / muimaster / classes / gauge_private.h
blobf5854cf0bfd1db9b9db8291a4424f1202b6180ed
1 #ifndef _GAUGE_PRIVATE_H_
2 #define _GAUGE_PRIVATE_H_
4 #define GAUGE_BUFSIZE 256
6 /*** Instance data **********************************************************/
7 struct Gauge_DATA
9 BOOL horiz;
10 BOOL dupinfo;
12 ULONG current; /* LONG in MUI, but MUI seems to handle it like ULONG */
13 ULONG max;
14 ULONG divide;
15 STRPTR info;
17 char buf[GAUGE_BUFSIZE];
18 LONG info_width;
19 LONG info_height;
23 #endif /* _GAUGE_PRIVATE_H_ */