Tabs to spaces, more consistent formatting.
[AROS.git] / workbench / libs / muimaster / classes / palette.h
blob36d176945569e77f3025f966569709d5fa86a899
1 #ifndef _MUI_CLASSES_PALETTE_H
2 #define _MUI_CLASSES_PALETTE_H
4 /*
5 Copyright © 2002-2003, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 /*** Name *******************************************************************/
10 #define MUIC_Palette "Palette.mui"
12 /*** Identifier base (for Zune extensions) **********************************/
13 #define MUIB_Palette (MUIB_ZUNE | 0x00008a00)
15 /*** Attributes *************************************************************/
16 #define MUIA_Palette_Entries \
17 0x8042a3d8 /* V6 i.g struct MUI_Palette_Entry * */
18 #define MUIA_Palette_Groupable \
19 0x80423e67 /* V6 isg BOOL */
20 #define MUIA_Palette_Names \
21 0x8042c3a2 /* V6 isg char ** */
23 #define MUIV_Palette_Entry_End -1
25 struct MUI_Palette_Entry
27 LONG mpe_ID;
28 ULONG mpe_Red;
29 ULONG mpe_Green;
30 ULONG mpe_Blue;
31 LONG mpe_Group;
34 extern const struct __MUIBuiltinClass _MUI_Palette_desc; /* PRIV */
36 #endif /* _MUI_PALETTE_H */