]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
swigall
authorBrian West <brian@freeswitch.org>
Mon, 18 Jan 2010 04:29:46 +0000 (04:29 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 18 Jan 2010 04:29:46 +0000 (04:29 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16352 d0543943-73ff-0310-b7d9-9358b9ac24b2

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

index ac1e507e892477f1c2110d9e30f3d17ff4294106..934729d9895c8a2dcc26d342864fa32e82f156e9 100644 (file)
@@ -7524,6 +7524,11 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_timer_init(void * jarg1, char * ja
 }
 
 
+SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_calibrate_clock() {
+  switch_time_calibrate_clock();
+}
+
+
 SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_timer_next(void * jarg1) {
   int jresult ;
   switch_timer_t *arg1 = (switch_timer_t *) 0 ;
@@ -9991,6 +9996,11 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_console_sort_matches(void * jarg1) {
 }
 
 
+SWIGEXPORT void SWIGSTDCALL CSharp_switch_console_save_history() {
+  switch_console_save_history();
+}
+
+
 SWIGEXPORT int SWIGSTDCALL CSharp_switch_toupper(int jarg1) {
   int jresult ;
   int arg1 ;
index d72349d557536a3dfcb7b1ce613acffbfa65e4f3..8da454a33f61d47a556818c9eb95ff0aeb4a6d0e 100644 (file)
@@ -1574,6 +1574,10 @@ public class freeswitch {
     return ret;
   }
 
+  public static void switch_time_calibrate_clock() {
+    freeswitchPINVOKE.switch_time_calibrate_clock();
+  }
+
   public static switch_status_t switch_core_timer_next(switch_timer timer) {
     switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_timer_next(switch_timer.getCPtr(timer));
     return ret;
@@ -2258,6 +2262,10 @@ public class freeswitch {
     freeswitchPINVOKE.switch_console_sort_matches(switch_console_callback_match.getCPtr(matches));
   }
 
+  public static void switch_console_save_history() {
+    freeswitchPINVOKE.switch_console_save_history();
+  }
+
   public static int switch_toupper(int c) {
     int ret = freeswitchPINVOKE.switch_toupper(c);
     return ret;
@@ -6702,6 +6710,9 @@ class freeswitchPINVOKE {
   [DllImport("mod_managed", EntryPoint="CSharp_switch_core_timer_init")]
   public static extern int switch_core_timer_init(HandleRef jarg1, string jarg2, int jarg3, int jarg4, HandleRef jarg5);
 
+  [DllImport("mod_managed", EntryPoint="CSharp_switch_time_calibrate_clock")]
+  public static extern void switch_time_calibrate_clock();
+
   [DllImport("mod_managed", EntryPoint="CSharp_switch_core_timer_next")]
   public static extern int switch_core_timer_next(HandleRef jarg1);
 
@@ -7275,6 +7286,9 @@ class freeswitchPINVOKE {
   [DllImport("mod_managed", EntryPoint="CSharp_switch_console_sort_matches")]
   public static extern void switch_console_sort_matches(HandleRef jarg1);
 
+  [DllImport("mod_managed", EntryPoint="CSharp_switch_console_save_history")]
+  public static extern void switch_console_save_history();
+
   [DllImport("mod_managed", EntryPoint="CSharp_switch_toupper")]
   public static extern int switch_toupper(int jarg1);
 
@@ -20814,7 +20828,10 @@ namespace FreeSWITCH.Native {
   SCF_RESTART = (1 << 4),
   SCF_SHUTDOWN_REQUESTED = (1 << 5),
   SCF_USE_AUTO_NAT = (1 << 6),
-  SCF_EARLY_HANGUP = (1 << 7)
+  SCF_EARLY_HANGUP = (1 << 7),
+  SCF_CALIBRATE_CLOCK = (1 << 8),
+  SCF_USE_COND_TIMING = (1 << 9),
+  SCF_USE_CLOCK_RT = (1 << 10)
 }
 
 }
@@ -26290,7 +26307,10 @@ public enum switch_session_ctl_t {
   SCSC_SEND_SIGHUP,
   SCSC_DEBUG_LEVEL,
   SCSC_FLUSH_DB_HANDLES,
-  SCSC_SHUTDOWN_NOW
+  SCSC_SHUTDOWN_NOW,
+  SCSC_CALIBRATE_CLOCK,
+  SCSC_SAVE_HISTORY,
+  SCSC_CRASH
 }
 
 }