This sets whether a rule is case sensitive or not.
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="CaseSensitive")> _
Private Function CaseSensitive__(ByVal RuleHandle As IntPtr,ByVal TrueFalse As Int32) As IntPtr
End Function
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="CaseSensitive")]
protected static extern IntPtr CaseSensitive_(IntPtr RuleHandle, bool TrueFalse);
{DLLImport}function CaseSensitive__(RuleHandle: System.Pointer;TrueFalse: Integer): System.Pointer; cdecl; external uCalcDLL name 'CaseSensitive';
typedef uCalcPtr (* __CaseSensitive)(void *RuleHandle, bool TrueFalse);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "CaseSensitive")]
static uCalcPtr CaseSensitive_(void * RuleHandle, bool TrueFalse);