git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16352 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2010-01-18 04:29:46 +00:00
parent e843204fe6
commit 0968912cfd
2 changed files with 32 additions and 2 deletions

View 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) { SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_timer_next(void * jarg1) {
int jresult ; int jresult ;
switch_timer_t *arg1 = (switch_timer_t *) 0 ; 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) { SWIGEXPORT int SWIGSTDCALL CSharp_switch_toupper(int jarg1) {
int jresult ; int jresult ;
int arg1 ; int arg1 ;

View File

@ -1574,6 +1574,10 @@ public class freeswitch {
return ret; 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) { 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)); switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_timer_next(switch_timer.getCPtr(timer));
return ret; return ret;
@ -2258,6 +2262,10 @@ public class freeswitch {
freeswitchPINVOKE.switch_console_sort_matches(switch_console_callback_match.getCPtr(matches)); 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) { public static int switch_toupper(int c) {
int ret = freeswitchPINVOKE.switch_toupper(c); int ret = freeswitchPINVOKE.switch_toupper(c);
return ret; return ret;
@ -6702,6 +6710,9 @@ class freeswitchPINVOKE {
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_timer_init")] [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); 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")] [DllImport("mod_managed", EntryPoint="CSharp_switch_core_timer_next")]
public static extern int switch_core_timer_next(HandleRef jarg1); 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")] [DllImport("mod_managed", EntryPoint="CSharp_switch_console_sort_matches")]
public static extern void switch_console_sort_matches(HandleRef jarg1); 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")] [DllImport("mod_managed", EntryPoint="CSharp_switch_toupper")]
public static extern int switch_toupper(int jarg1); public static extern int switch_toupper(int jarg1);
@ -20814,7 +20828,10 @@ namespace FreeSWITCH.Native {
SCF_RESTART = (1 << 4), SCF_RESTART = (1 << 4),
SCF_SHUTDOWN_REQUESTED = (1 << 5), SCF_SHUTDOWN_REQUESTED = (1 << 5),
SCF_USE_AUTO_NAT = (1 << 6), 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_SEND_SIGHUP,
SCSC_DEBUG_LEVEL, SCSC_DEBUG_LEVEL,
SCSC_FLUSH_DB_HANDLES, SCSC_FLUSH_DB_HANDLES,
SCSC_SHUTDOWN_NOW SCSC_SHUTDOWN_NOW,
SCSC_CALIBRATE_CLOCK,
SCSC_SAVE_HISTORY,
SCSC_CRASH
} }
} }