Important: The information in this document is obsolete and should not be used for new development.
CProcRec
TheCProcRec
data structure contains a pointer to a custom complement function and a pointer to the next complement function in the list.
struct CProcRec { Handle nxtComp; /* handle to next CProcRec */ ColorComplementProcPtr compProc;/* pointer to complement function */ }; typedef struct CProcRec CProcRec; typedef CProcRec *CProcPtr, **CProcHndl;
Field Description
nxtComp
- A handle to the next
CPRocRec
data structure in the list.compProc
- A pointer to a complement function. See MyCompProc (page 5-18).