ARRretptr
Synopsis
INTEGER FUNCTION ARRFretptr(farray)
DIMENSION farray(1)
Description
This function returns the address of a local memory location. It is required to pass locally defined arrays to AVS/Express.On 64-bit platforms, ARRFretptr actually returns an INTEGER*8.
Arguments
farray
Returned value
The address of the first element of farray.
Examples
none.
#include <avs/omf.inc> INTEGER iaddrC On 64-bit platforms, iaddr should be INTEGER*8 INTEGER iarray(200) ... iaddr = ARRFretptr(iarray)
See Also