AuxCtlRec
AuxCtlRec structure
#include <Controls.h>
typedef struct AuxCtlRec { Size Offset Description
AuxCtlHandle acNext; 4 0 Leads to next control in list
ControlHandle acOwner; 4 4 Handle to control that owns this
auxiliary control
CCTabHandle acCTable; 4 8 Handle to individual control's color
table
short acFlags; 2 12 Reserved flag field
long acReserved; 4 14 Set to 0, reserved for the future
long acRefCon; 4 18 Field for application's reference
constant
} AuxCtlRec; 22
typedef AuxCtlRec *AuxCtlPtr;
typedef AuxCtlPtr **AuxCtlHandle;

Notes: Controls you create don't initially have an AuxCtlRec and if you wish to use
non-standard colors you'll need to provide a control record and color table
by calling SetCtlColor. Controls should be created invisible then colors
are set, and then displayed by calling ShowControl. When you make your
controls using the 'CNTL' resource, you can also stipulate that the color
table be a resource, specifically, type 'cctb'.