提交 5e1d6e67 authored 作者: Brian West's avatar Brian West

swigall

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16099 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 f97846f4
......@@ -8825,6 +8825,30 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_monotonic(int jarg1) {
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_nanosleep(int jarg1) {
switch_bool_t arg1 ;
arg1 = (switch_bool_t)jarg1;
switch_time_set_nanosleep(arg1);
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_matrix(int jarg1) {
switch_bool_t arg1 ;
arg1 = (switch_bool_t)jarg1;
switch_time_set_matrix(arg1);
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_cond_yield(int jarg1) {
switch_bool_t arg1 ;
arg1 = (switch_bool_t)jarg1;
switch_time_set_cond_yield(arg1);
}
SWIGEXPORT unsigned long SWIGSTDCALL CSharp_switch_core_min_dtmf_duration(unsigned long jarg1) {
unsigned long jresult ;
uint32_t arg1 ;
......
......@@ -2070,6 +2070,18 @@ public class freeswitch {
freeswitchPINVOKE.switch_time_set_monotonic((int)enable);
}
public static void switch_time_set_nanosleep(switch_bool_t enable) {
freeswitchPINVOKE.switch_time_set_nanosleep((int)enable);
}
public static void switch_time_set_matrix(switch_bool_t enable) {
freeswitchPINVOKE.switch_time_set_matrix((int)enable);
}
public static void switch_time_set_cond_yield(switch_bool_t enable) {
freeswitchPINVOKE.switch_time_set_cond_yield((int)enable);
}
public static uint switch_core_min_dtmf_duration(uint duration) {
uint ret = freeswitchPINVOKE.switch_core_min_dtmf_duration(duration);
return ret;
......@@ -6981,6 +6993,15 @@ class freeswitchPINVOKE {
[DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_monotonic")]
public static extern void switch_time_set_monotonic(int jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_nanosleep")]
public static extern void switch_time_set_nanosleep(int jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_matrix")]
public static extern void switch_time_set_matrix(int jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_cond_yield")]
public static extern void switch_time_set_cond_yield(int jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_min_dtmf_duration")]
public static extern uint switch_core_min_dtmf_duration(uint jarg1);
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论