DllFunction.Call_WindowsHandle

Prototypes

long Call_WindowsHandle()

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 Windows handle. On Win32 systems, Windows handles are 32-bits long. On Win64 systems, Windows handles are 64-bits long. 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_WindowsHandle();