Synopsis
INTEGER FUNCTION OMFset_str_array_val(object_id,
. index,
. string)
#include <avs/omf.inc>
INTEGER object_id(OIDSIZ)
INTEGER index
CHARACTER*(*) string
Description
For a complete description of this function, see .
Arguments
object_id
The id of an object, expressed as an integer.
index
The array index, expressed as an integer.
string
A character string specifying the object's value.
value
The status code (see ).
Example
#include <avs/omf.inc>
INTEGER strarr_id(OIDSIZ)
CHARACTER*30 value
...
value = 'My String'
IF (OMFset_str_array_val(strarr_id,
. 0,
. value) .NE. 1)
. PRINT*,'Error setting string value of object strarr'
See also
Related module: