DllFunction.SetInt64Arg

Prototypes

void SetInt64Arg( int nPos, long value )

Parameters

int nPos
The number (1-based) of the parameter whose value you want to set.

long value
The value to assign to the function parameter.

Remarks

This method assigns a value to the specified parameter. The type of the parameter must have been previously declared with the method NextArgIsInt64.

Example
declare long value = 5;
func.SetInt64Arg( 2, value );
See Also

DllFunction.NextArgIsInt64