This clears the input string, transforms, and results. It also resets properties to default settings
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Reset")> _
Private Sub Reset__(ByVal TransformHandle As IntPtr)
End Sub
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Reset")]
protected static extern void Reset_(IntPtr TransformHandle);
{DLLImport}procedure Reset__(TransformHandle: System.Pointer); cdecl; external uCalcDLL name 'Reset';
typedef void (* __Reset)(void *TransformHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "Reset")]
static void Reset_(void * TransformHandle);