DllFunction.NextArgIsInt8

Prototypes

void NextArgIsInt8( <byte value> )

Parameters

byte 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 SetInt8Arg.

Remarks

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

Example
declare byte value = 5;
func.NextArgIsInt8( value );
See Also

DllFunction.SetInt8Arg