Resolves function names to function addresses for a Designer form
| Call | |
| #include <vv_des.h> | |
| void sfm_funclist(funclistp, fmp) | |
|
FUNCLISPTR funclistp |
Pointer to function list to search for functions |
| FORMPTR fmp | Pointer to form to resolve external function references for |
| Returns
None |
|
| Description
sfm_funclist() first checks for any installed form-level functions. If it finds any, sfm_funclist() searches for the function name string (entered in the Designer) in the specified function list. If the function is found, sfm_funclist() sets the corresponding function address to be called when the function is invoked. After the form-level functions are resolved, sfm_funclist() searches each item in the linked list of items. If there are any installed functions for any data fields, memo fields, menu fields, pushbutton fields, or scrollable regions, these function names are also converted to pointers using the specified function list. |
|
| Related Functions | |
| Cautions
All fields must be defined before calling sfm_funclist(). All function references must be resolved before the form is processed. |
|