After performing a text transformation, you may obtain the transformed result with this
function
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="ResultStr")> _
Private Sub ResultStr__(ByVal TransformHandle As IntPtr)
End Sub
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="ResultStr")]
protected static extern void ResultStr_(IntPtr TransformHandle);
{DLLImport}procedure ResultStr__(TransformHandle: System.Pointer); cdecl; external uCalcDLL name 'ResultStr';
typedef void (* __ResultStr)(void *TransformHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "ResultStr")]
static void ResultStr_(void * TransformHandle);