1 #ifndef PREFS_PALETTE_H 2 #define PREFS_PALETTE_H 3 4 /* 5 palette prefs definitions 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_TYPES_H 11 # include <exec/types.h> 12 #endif 13 14 #ifndef LIBRARIES_IFFPARSE_H 15 # include <libraries/iffparse.h> 16 #endif 17 18 #ifndef INTUITION_INTUITION_H 19 # include <intuition/intuition.h> 20 #endif 21 22 #pragma pack(2) 23 24 25 #define ID_PALT MAKE_ID('P','A','L','T') 26 27 28 struct PalettePrefs 29 { 30 LONG pap_Reserved[4]; 31 UWORD pap_4ColorPens[32]; 32 UWORD pap_8ColorPens[32]; 33 struct ColorSpec pap_Colors[32]; 34 }; 35 36 37 #pragma pack() 38 39 #endif /* PREFS_PALETTE_H */