FreeSWITCH.Native.freeswitch.switch_regex_compile C# (CSharp) Method

switch_regex_compile() public static method

public static switch_regex_compile ( string pattern, int options, string &errorptr, SWIGTYPE_p_int erroroffset, SWIGTYPE_p_unsigned_char tables ) : SWIGTYPE_p_real_pcre
pattern string
options int
errorptr string
erroroffset SWIGTYPE_p_int
tables SWIGTYPE_p_unsigned_char
return SWIGTYPE_p_real_pcre
        public static SWIGTYPE_p_real_pcre switch_regex_compile(string pattern, int options, ref string errorptr, SWIGTYPE_p_int erroroffset, SWIGTYPE_p_unsigned_char tables)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_regex_compile(pattern, options, ref errorptr, SWIGTYPE_p_int.getCPtr(erroroffset), SWIGTYPE_p_unsigned_char.getCPtr(tables));
            SWIGTYPE_p_real_pcre ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_real_pcre(cPtr, false);
            return ret;
        }
freeswitch