ErrorExpressionMethod
Returns the expression associated with an error that was raised
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="ErrorExpression")> _
Private Function ErrorExpression__(ByVal uCalcHandle As IntPtr) As IntPtr
End Function
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="ErrorExpression")]
protected static extern IntPtr ErrorExpression_(IntPtr uCalcHandle);
{DLLImport}function ErrorExpression__(uCalcHandle: System.Pointer): PAnsiChar; cdecl; external uCalcDLL name 'ErrorExpression';
typedef const char * (* __ErrorExpression)(void *uCalcHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "ErrorExpression")]
static STR_RETURN ErrorExpression_(void * uCalcHandle);