Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Advanced Color Imaging Reference /
Chapter 5 - Color Manager Reference /
Constants and Data Types /


CProcRec

The CProcRec 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).

Previous Book Contents Book Index Next

© Apple Computer, Inc.
11 NOV 1996