home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
gnu
/
os-include
/
prefs
/
palette.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
974b
|
48 lines
#ifndef PREFS_PALETTE_H
#define PREFS_PALETTE_H
/*
** $VER: palette.h 39.2 (15.6.92)
** Includes Release 40.15
**
** File format for palette preferences
**
** (C) Copyright 1992-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
/*****************************************************************************/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef LIBRARIES_IFFPARSE_H
#include <libraries/iffparse.h>
#endif
#ifndef INTUITION_INTUITION_H
#include <intuition/intuition.h>
#endif
/*****************************************************************************/
#define ID_PALT MAKE_ID('P','A','L','T')
struct PalettePrefs
{
LONG pap_Reserved[4]; /* System reserved */
UWORD pap_4ColorPens[32];
UWORD pap_8ColorPens[32];
struct ColorSpec pap_Colors[32]; /* Used as full 16-bit RGB values */
};
/*****************************************************************************/
#endif /* PREFS_PALETTE_H */