DllFunction.NextArgIsIntPtr

Prototypes

void NextArgIsIntPtr( <long value> )

Parameters

long value
The value to assign to this function parameter. On Win32 systems, only the lower 32 bits of the value are used. 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 SetIntPtrArg.

Remarks

This method declares the type of the function's next parameter to be a 32-bit integer on Win32 systems and a 64-bit integer on Win64 systems.

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

DllFunction.SetIntPtrArg