]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
swigall
authorBrian West <brian@freeswitch.org>
Wed, 30 Dec 2009 21:57:54 +0000 (21:57 +0000)
committerBrian West <brian@freeswitch.org>
Wed, 30 Dec 2009 21:57:54 +0000 (21:57 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16099 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_managed/freeswitch_wrap.cxx
src/mod/languages/mod_managed/managed/swig.cs

index 845d9d8b86d0d75f59bb2059e750aa144d287159..7a43d7b2ab6cd2e03b079d1bf15305567f5c3fab 100644 (file)
@@ -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 ;
index 5a1df0a1a7493b36c6c77dbee038d311f16b6f28..096865c04667f6e83ab25913a6409c6e61d6a29c 100644 (file)
@@ -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);