Once all the rules and parameters are set, you can call this function in order to
perform the text transformation.
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Transform")> _
Private Sub Transform__(ByVal TransformHandle As IntPtr)
End Sub
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Transform")]
protected static extern void Transform_(IntPtr TransformHandle);
{DLLImport}procedure Transform__(TransformHandle: System.Pointer); cdecl; external uCalcDLL name 'Transform';
typedef void (* __Transform)(void *TransformHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "Transform")]
static void Transform_(void * TransformHandle);