DllFunction.NextArgIsInt32

Prototypes

void NextArgIsInt32( <int value> )

Parameters

int 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 SetInt32Arg.

Remarks

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

Example
declare int value = 5;
func.NextArgIsInt32( value );
See Also

DllFunction.SetInt32Arg