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.

Example


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

See also

•      See OMadd_named_func

•      See OMfunc_to_name

•      See OMname_to_func