Tabs to spaces, more consistent formatting.
[AROS.git] / workbench / libs / muimaster / classes / palette_private.h
blob5ccfc8a03224e7d103960e71380fe225bb959791
1 #ifndef _PALETTE_PRIVATE_H_
2 #define _PALETTE_PRIVATE_H_
4 #include <utility/hooks.h>
5 #include <libraries/mui.h>
7 /*** Instance data **********************************************************/
8 struct MUI_PaletteData
10 const char **names;
11 struct MUI_Palette_Entry *entries;
12 struct IClass *notifyclass;
13 Object *list, *coloradjust;
14 ULONG numentries;
15 ULONG group;
16 ULONG rgb[3];
17 struct Hook display_hook;
18 struct Hook setcolor_hook;
19 char buf[20];
21 #endif /* _PALETTE_PRIVATE_H_ */