Important: The information in this document is obsolete and should not be used for new development.
SProcRec
TheSProcRec
data structure contains a pointer to a custom search function and a handle to the nextSProcRec
data 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
SProcRec
data structure in the chain of search functions.srchProc
- A pointer to a custom search function. See MySearchProc (page 5-17).