HandleMethod
    
    
    Returns the handle of the sub expression passed to the callback
    
    
    
      DLL import code
      
        
        
          
            
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Handle_Overload_Callback")> _
Private Function Handle_Overload_Callback__(ByVal ExprPartHandle As IntPtr) As  IntPtr
End Function
            
          
         
        
          
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Handle_Overload_Callback")]
protected static extern  IntPtr Handle_Overload_Callback_(IntPtr ExprPartHandle);
            
          
         
        
          
            
{DLLImport}function Handle_Overload_Callback__(ExprPartHandle: System.Pointer):  System.Pointer; cdecl; external uCalcDLL name 'Handle_Overload_Callback';
            
          
         
        
          
            
typedef  void * (* __Handle_Overload_Callback)(void *ExprPartHandle); 
            
          
         
        
          
            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "Handle_Overload_Callback")]
static void *   Handle_Overload_Callback_(void *  ExprPartHandle);