Synopsis
OMobj_name OMfunc_to_name (OMpfi function );
Description
OMfunc_to_name queries AVS/Express' internal table that maps functions to function identifiers, and returns the identifier corresponding to a specified function.
Arguments
function
The name of a C function.
Example
/* Return the identifier corresponding to function add_num. */
OMobj_name function_identifier;
...
function_identifier = OMfunc_to_name((OMpfi)add_num);
See also