当前位置: 首页>>代码示例>>C#>>正文


C# Native.SWIGTYPE_p_int类代码示例

本文整理汇总了C#中FreeSWITCH.Native.SWIGTYPE_p_int的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_int类的具体用法?C# SWIGTYPE_p_int怎么用?C# SWIGTYPE_p_int使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SWIGTYPE_p_int类属于FreeSWITCH.Native命名空间,在下文中一共展示了SWIGTYPE_p_int类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: switch_regex_compile

 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;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:6,代码来源:swig.2010.cs

示例2: switch_regex_copy_substring

 public static int switch_regex_copy_substring(string subject, SWIGTYPE_p_int ovector, int stringcount, int stringnumber, string buffer, int size)
 {
     int ret = freeswitchPINVOKE.switch_regex_copy_substring(subject, SWIGTYPE_p_int.getCPtr(ovector), stringcount, stringnumber, buffer, size);
     return ret;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs

示例3: switch_find_local_ip

 public static switch_status_t switch_find_local_ip(string buf, int len, SWIGTYPE_p_int mask, int family)
 {
     switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_find_local_ip(buf, len, SWIGTYPE_p_int.getCPtr(mask), family);
     return ret;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs

示例4: switch_perform_substitution

 public static void switch_perform_substitution(SWIGTYPE_p_real_pcre re, int match_count, string data, string field_data, string substituted, SWIGTYPE_p_switch_size_t len, SWIGTYPE_p_int ovector)
 {
     freeswitchPINVOKE.switch_perform_substitution(SWIGTYPE_p_real_pcre.getCPtr(re), match_count, data, field_data, substituted, SWIGTYPE_p_switch_size_t.getCPtr(len), SWIGTYPE_p_int.getCPtr(ovector));
     if (freeswitchPINVOKE.SWIGPendingException.Pending) throw freeswitchPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs

示例5: switch_core_session_ctl

 public static int switch_core_session_ctl(switch_session_ctl_t cmd, SWIGTYPE_p_int val) {
   int ret = freeswitchPINVOKE.switch_core_session_ctl((int)cmd, SWIGTYPE_p_int.getCPtr(val));
   return ret;
 }
开发者ID:joshrivers,项目名称:FreeSWITCH.Managed,代码行数:4,代码来源:swig.cs

示例6: switch_core_session_get_app_flags

 public static switch_status_t switch_core_session_get_app_flags(string app, SWIGTYPE_p_int flags)
 {
     switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_session_get_app_flags(app, SWIGTYPE_p_int.getCPtr(flags));
     return ret;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs

示例7: getCPtr

 internal static HandleRef getCPtr(SWIGTYPE_p_int obj)
 {
     return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:4,代码来源:swig.2010.cs

示例8: switch_split_date

 public static void switch_split_date(string exp, SWIGTYPE_p_int year, SWIGTYPE_p_int month, SWIGTYPE_p_int day)
 {
     freeswitchPINVOKE.switch_split_date(exp, SWIGTYPE_p_int.getCPtr(year), SWIGTYPE_p_int.getCPtr(month), SWIGTYPE_p_int.getCPtr(day));
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:4,代码来源:swig.2010.cs

示例9: switch_close_extra_files

 public static void switch_close_extra_files(SWIGTYPE_p_int keep, int keep_ttl) {
   freeswitchPINVOKE.switch_close_extra_files(SWIGTYPE_p_int.getCPtr(keep), keep_ttl);
 }
开发者ID:jasonbourneh0810,项目名称:FreeSWITCH,代码行数:3,代码来源:swig.2010.cs

示例10: switch_xml_std_datetime_check

 public static int switch_xml_std_datetime_check(switch_xml xcond, SWIGTYPE_p_int offset) {
   int ret = freeswitchPINVOKE.switch_xml_std_datetime_check(switch_xml.getCPtr(xcond), SWIGTYPE_p_int.getCPtr(offset));
   return ret;
 }
开发者ID:jasonbourneh0810,项目名称:FreeSWITCH,代码行数:4,代码来源:swig.2010.cs

示例11: switch_capture_regex

 public static void switch_capture_regex(SWIGTYPE_p_real_pcre re, int match_count, string field_data, SWIGTYPE_p_int ovector, string var, SWIGTYPE_p_f_p_q_const__char_p_q_const__char_p_void__void callback, SWIGTYPE_p_void user_data) {
   freeswitchPINVOKE.switch_capture_regex(SWIGTYPE_p_real_pcre.getCPtr(re), match_count, field_data, SWIGTYPE_p_int.getCPtr(ovector), var, SWIGTYPE_p_f_p_q_const__char_p_q_const__char_p_void__void.getCPtr(callback), SWIGTYPE_p_void.getCPtr(user_data));
 }
开发者ID:jasonbourneh0810,项目名称:FreeSWITCH,代码行数:3,代码来源:swig.2010.cs

示例12: switch_core_ssl_count

 public static int switch_core_ssl_count(SWIGTYPE_p_int val) {
   int ret = freeswitchPINVOKE.switch_core_ssl_count(SWIGTYPE_p_int.getCPtr(val));
   return ret;
 }
开发者ID:netconstructor,项目名称:freeswitch,代码行数:4,代码来源:swig.cs

示例13: switch_core_screen_size

 public static void switch_core_screen_size(SWIGTYPE_p_int x, SWIGTYPE_p_int y) {
   freeswitchPINVOKE.switch_core_screen_size(SWIGTYPE_p_int.getCPtr(x), SWIGTYPE_p_int.getCPtr(y));
 }
开发者ID:rockxsj,项目名称:FreeSWITCH,代码行数:3,代码来源:swig.2010.cs

示例14: switch_regex_match_partial

 public static switch_status_t switch_regex_match_partial(string target, string expression, SWIGTYPE_p_int partial_match)
 {
     switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_regex_match_partial(target, expression, SWIGTYPE_p_int.getCPtr(partial_match));
     return ret;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs

示例15: switch_core_db_get_table

 public static int switch_core_db_get_table(SWIGTYPE_p_sqlite3 db, string sql, SWIGTYPE_p_p_p_char resultp, SWIGTYPE_p_int nrow, SWIGTYPE_p_int ncolumn, ref string errmsg)
 {
     int ret = freeswitchPINVOKE.switch_core_db_get_table(SWIGTYPE_p_sqlite3.getCPtr(db), sql, SWIGTYPE_p_p_p_char.getCPtr(resultp), SWIGTYPE_p_int.getCPtr(nrow), SWIGTYPE_p_int.getCPtr(ncolumn), ref errmsg);
     return ret;
 }
开发者ID:newfront,项目名称:FreeSWITCH,代码行数:5,代码来源:swig.2010.cs


注:本文中的FreeSWITCH.Native.SWIGTYPE_p_int类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。