DllFunction.Call_UIntPtr

Prototypes

long Call_UIntPtr()

Return Value

The method's return value is the return value from the DLL function.

Parameters

None

Remarks

When you call this method, IMLPlus calls the specified DLL function and expects the return value to be an unsigned 32-bit integer on Win32 systems and an unsigned 64-bit integer on Win64 systems. Note that the method's return type is declared as long so that either case can be accommodated.

Example
declare long retvalue;
retvalue = func.Call_UIntPtr();