Carbon


SProcRec

Header: Quickdraw.h

struct SProcRec {
    Handle nxtSrch; 
    ColorSearchUPP srchProc;
};
typedef SProcRec SProcPtr;

Field descriptions

nxtSrch

A handle to the next SProcRec data structure in the chain of search functions.

srchProc

A pointer to a custom search function (described in ColorSearchProcPtr).

The SProcRec data structure contains a pointer to a custom search function and a handle to the next SProcRec data structure in the function list.


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