TOC PREV NEXT INDEX

OMFset array size

Synopsis


INTEGER FUNCTION OMFset array size(object id,
. size)
#include <avs/omf.inc>
INTEGER object id(OIDSIZ)
INTEGER size

Description

For a complete description of this function, see OMset array size .

Arguments

object id
The id of an object, expressed as an integer.
size
The number of values in the one-dimensional array, expressed as an integer.

Returned value

The status code (see OMset array size ).

Examples


#include <avs/omf.inc>
INTEGER array id(OIDSIZ)
INTEGER size
...
size = 250
IF OMFset array size(array id,size) .NE. 1)
. PRINT*,'Error getting array size'

See Also

OMFget array size

TOC PREV NEXT INDEX