TOC PREV NEXT INDEX

OMFlookup_subobj

Synopsis


INTEGER FUNCTION OMFlookup_subobj(parent_id,
     . name,
     . mode,
     . returned_id)
#include <avs/omf.inc>
INTEGER parent_id(OIDSIZ)
INTEGER name, mode
INTEGER returned_id(OIDSIZ)

Description

For a complete description of this function, see OMlookup_subobj.

Arguments

parent_id
The id of an object, as an integer value.
name
The unqualified name of an object as an integer value.
mode
Indication of how the process intends to use the object. The following constants are predefined in the include file omf.inc :
Mode
Meaning
OM_OBJ_RD
The process intends to read the object, but not write to it (or any object that it might get using this id).
OM_OBJ_RW
The process intends to read and possibly write to the object.
returned_id
The id of the found object or OMnull_obj on failure.

Returned value

1 on success; 0 if OMnull_obj is returned.

Examples

none.

See Also

OMFfind_subobj
OMFfind_obj

TOC PREV NEXT INDEX