TOC PREV NEXT INDEX

OMadd_named_func

Synopsis


void OMadd_named_func ( OMpfi function,
OMobj_name identifier );

Description

OMadd_named_func adds a single entry to AVS/Express' internal table that maps functions to function identifiers.If identifier already exists in the table, AVS/Express prints a warning message and replaces the existing entry.This routine is used by code generated by AVS/Express to build this database. Users do not typically need to call this routine themselves.

Arguments

function
The name of a C function.
identifier
A function identifier.

Examples


/* Add a single entry to the function-identifier table. */OMadd_named_func((OMpfi)add_num, OMstr_to_name("add numbers"));

See Also

OMadd_named_func
OMfunc_to_name
OMname_to_func

TOC PREV NEXT INDEX