Important: The information in this document is obsolete and should not be used for new development.
SProcRec
TheSProcRecdata structure contains a pointer to a custom search function and a handle to the nextSProcRecdata structure in the function list.
struct SProcRec { Handle nxtSrch; /* handle to next SProcRec */ ColorSearchProcPtrsrchProc; /* pointer to search function */ }; typedef struct SProcRec SProcRec; typedef SProcRec *SProcPtr, **SProcHndl;
Field Description
nxtSrch- A handle to the next
SProcRecdata structure in the chain of search functions.srchProc- A pointer to a custom search function. See MySearchProc (page 5-17).