CProcRec
TheCProcRecdata 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
CPRocRecdata structure in the list.compProc- A pointer to a complement function. See MyCompProc (page 5-18).
Main | Top of Section | What's New | Apple Computer, Inc. | Find It | Feedback | Help