home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / at-inc-bin.lha / os-include / prefs / palette.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  974b  |  48 lines

  1. #ifndef PREFS_PALETTE_H
  2. #define PREFS_PALETTE_H
  3. /*
  4. **    $VER: palette.h 39.2 (15.6.92)
  5. **    Includes Release 40.15
  6. **
  7. **    File format for palette preferences
  8. **
  9. **    (C) Copyright 1992-1993 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24. #ifndef INTUITION_INTUITION_H
  25. #include <intuition/intuition.h>
  26. #endif
  27.  
  28.  
  29. /*****************************************************************************/
  30.  
  31.  
  32. #define ID_PALT MAKE_ID('P','A','L','T')
  33.  
  34.  
  35. struct PalettePrefs
  36. {
  37.     LONG         pap_Reserved[4];     /* System reserved           */
  38.     UWORD         pap_4ColorPens[32];
  39.     UWORD         pap_8ColorPens[32];
  40.     struct ColorSpec pap_Colors[32];     /* Used as full 16-bit RGB values */
  41. };
  42.  
  43.  
  44. /*****************************************************************************/
  45.  
  46.  
  47. #endif /* PREFS_PALETTE_H */
  48.