HandleMethod
Returns the handle of the
uCalc object
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Handle_Overload_uCalc")> _
Private Function Handle_Overload_uCalc__(ByVal uCalcHandle As IntPtr) As IntPtr
End Function
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Handle_Overload_uCalc")]
protected static extern IntPtr Handle_Overload_uCalc_(IntPtr uCalcHandle);
{DLLImport}function Handle_Overload_uCalc__(uCalcHandle: System.Pointer): System.Pointer; cdecl; external uCalcDLL name 'Handle_Overload_uCalc';
typedef void * (* __Handle_Overload_uCalc)(void *uCalcHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "Handle_Overload_uCalc")]
static void * Handle_Overload_uCalc_(void * uCalcHandle);