#ifndef PREFS_PALETTE_H #define PREFS_PALETTE_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: palette.h 23386 2005-06-23 08:17:21Z neil $ Desc: Palette prefs definitions Lang: english */ #ifndef EXEC_TYPES_H # include #endif #ifndef LIBRARIES_IFFPARSE_H # include #endif #ifndef INTUITION_INTUITION_H # include #endif #define ID_PALT MAKE_ID('P','A','L','T') struct PalettePrefs { LONG pap_Reserved[4]; UWORD pap_4ColorPens[32]; UWORD pap_8ColorPens[32]; struct ColorSpec pap_Colors[32]; }; #endif /* PREFS_PALETTE_H */