ctTable
ColorTable structure
#include <Quickdraw.h>
typedef struct ColorTable { Size Offset Description
long ctSeed; 4 0 Unique identifier
short ctFlags; 2 4 Flags describing specArray
short ctSize; 2 6 CtTable entries minus one
CSpecArray ctTable; n 8 Value of n=8*( ctSize+1 )
} ColorTable; 8+n
typedef ColorTable * CTabPtr;
typedef ColorTable ** CTabHandle;

Notes: Resource type 'clut' is identical to ColorTable.