Carbon


CProcRec

Header: Quickdraw.h

struct CProcRec {
    Handle nxtComp; 
    ColorComplementUPP compProc;
};
typedef CProcRec CProcPtr;

Field descriptions

nxtComp

A handle to the next CPRocRec data structure in the list.

compProc

A pointer to a complement function, as described in ColorComplementProcPtr.

The CProcRec data structure contains a pointer to a custom complement function and a pointer to the next complement function in the list.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)