Returns a new object that can be used to transform text.
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="NewTransform")> _
Private Function NewTransform__(ByVal uCalcHandle As IntPtr) As IntPtr
End Function
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="NewTransform")]
protected static extern IntPtr NewTransform_(IntPtr uCalcHandle);
{DLLImport}function NewTransform__(uCalcHandle: System.Pointer): System.Pointer; cdecl; external uCalcDLL name 'NewTransform';
typedef uCalcPtr (* __NewTransform)(void *uCalcHandle);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "NewTransform")]
static uCalcPtr NewTransform_(void * uCalcHandle);