DllFunction.Call_IntPtr

Prototypes

long Call_IntPtr()

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 a signed 32-bit integer on Win32 systems and a signed 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_IntPtr();