DllFunction.NextArgIsInt64

Prototypes

void NextArgIsInt64( <long value> )

Parameters

long value
The value to assign to this function parameter. If you call this method without specifying value, you are specifying the type of the function's parameter without specifying its value. You can specify the value later by calling the method SetInt64Arg.

Remarks

This method declares the type of the function's next parameter to be a 64-bit integer.

Example
declare long value = 5;
func.NextArgIsInt64( value );
See Also

DllFunction.SetInt64Arg