added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / muimaster / classes / palette.h
blobb2b4a6121f652f9643f82077df7064006679b873
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 0x8042a3d8 /* V6 i.g struct MUI_Palette_Entry * */
17 #define MUIA_Palette_Groupable 0x80423e67 /* V6 isg BOOL */
18 #define MUIA_Palette_Names 0x8042c3a2 /* V6 isg char ** */
20 #define MUIV_Palette_Entry_End -1
22 struct MUI_Palette_Entry
24 LONG mpe_ID;
25 ULONG mpe_Red;
26 ULONG mpe_Green;
27 ULONG mpe_Blue;
28 LONG mpe_Group;
31 extern const struct __MUIBuiltinClass _MUI_Palette_desc; /* PRIV */
33 #endif /* _MUI_PALETTE_H */