If SkipOver is set to true, then text that matches this pattern will be skipped over.
This is useful for preventing uCalc from searching for matches of any other rules within
certain text you want to skip over.
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="SkipOver")> _
Private Function SkipOver__(ByVal RuleHandle As IntPtr,ByVal TrueFalse As Int32) As IntPtr
End Function
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="SkipOver")]
protected static extern IntPtr SkipOver_(IntPtr RuleHandle, bool TrueFalse);
{DLLImport}function SkipOver__(RuleHandle: System.Pointer;TrueFalse: Integer): System.Pointer; cdecl; external uCalcDLL name 'SkipOver';
typedef uCalcPtr (* __SkipOver)(void *RuleHandle, bool TrueFalse);
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "SkipOver")]
static uCalcPtr SkipOver_(void * RuleHandle, bool TrueFalse);