vs2010 reswig
This commit is contained in:
parent
f148aa9c3b
commit
553bda996b
|
@ -12741,9 +12741,9 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_monotonic(int jarg1) {
|
|||
|
||||
|
||||
SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_timerfd(int jarg1) {
|
||||
switch_bool_t arg1 ;
|
||||
int arg1 ;
|
||||
|
||||
arg1 = (switch_bool_t)jarg1;
|
||||
arg1 = (int)jarg1;
|
||||
switch_time_set_timerfd(arg1);
|
||||
}
|
||||
|
||||
|
@ -14209,6 +14209,14 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_ice_direction(void * jarg1) {
|
|||
}
|
||||
|
||||
|
||||
SWIGEXPORT void SWIGSTDCALL CSharp_switch_core_session_debug_pool(void * jarg1) {
|
||||
switch_stream_handle_t *arg1 = (switch_stream_handle_t *) 0 ;
|
||||
|
||||
arg1 = (switch_stream_handle_t *)jarg1;
|
||||
switch_core_session_debug_pool(arg1);
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT void SWIGSTDCALL CSharp_switch_loadable_module_interface_module_name_set(void * jarg1, char * jarg2) {
|
||||
switch_loadable_module_interface *arg1 = (switch_loadable_module_interface *) 0 ;
|
||||
char *arg2 = (char *) 0 ;
|
||||
|
@ -35686,7 +35694,7 @@ SWIGEXPORT int SWIGSTDCALL CSharp_MAX_CAND_get() {
|
|||
int jresult ;
|
||||
int result;
|
||||
|
||||
result = (int)(25);
|
||||
result = (int)(50);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
@ -35702,7 +35710,7 @@ SWIGEXPORT void SWIGSTDCALL CSharp_ice_t_cands_set(void * jarg1, void * jarg2) {
|
|||
icand_t (*inp)[2] = (icand_t (*)[2])(arg2);
|
||||
icand_t (*dest)[2] = (icand_t (*)[2])(arg1->cands);
|
||||
size_t ii = 0;
|
||||
for (; ii < 25; ++ii) {
|
||||
for (; ii < 50; ++ii) {
|
||||
icand_t *ip = inp[ii];
|
||||
icand_t *dp = dest[ii];
|
||||
size_t jj = 0;
|
||||
|
|
|
@ -2763,8 +2763,8 @@ public class freeswitch {
|
|||
freeswitchPINVOKE.switch_time_set_monotonic((int)enable);
|
||||
}
|
||||
|
||||
public static void switch_time_set_timerfd(switch_bool_t enable) {
|
||||
freeswitchPINVOKE.switch_time_set_timerfd((int)enable);
|
||||
public static void switch_time_set_timerfd(int enable) {
|
||||
freeswitchPINVOKE.switch_time_set_timerfd(enable);
|
||||
}
|
||||
|
||||
public static void switch_time_set_nanosleep(switch_bool_t enable) {
|
||||
|
@ -3160,6 +3160,10 @@ public class freeswitch {
|
|||
return ret;
|
||||
}
|
||||
|
||||
public static void switch_core_session_debug_pool(switch_stream_handle stream) {
|
||||
freeswitchPINVOKE.switch_core_session_debug_pool(switch_stream_handle.getCPtr(stream));
|
||||
}
|
||||
|
||||
public static switch_status_t switch_loadable_module_init(switch_bool_t autoload) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_loadable_module_init((int)autoload);
|
||||
return ret;
|
||||
|
@ -10723,6 +10727,9 @@ class freeswitchPINVOKE {
|
|||
[DllImport("mod_managed", EntryPoint="CSharp_switch_ice_direction")]
|
||||
public static extern int switch_ice_direction(HandleRef jarg1);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_session_debug_pool")]
|
||||
public static extern void switch_core_session_debug_pool(HandleRef jarg1);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_loadable_module_interface_module_name_set")]
|
||||
public static extern void switch_loadable_module_interface_module_name_set(HandleRef jarg1, string jarg2);
|
||||
|
||||
|
@ -26726,6 +26733,7 @@ public enum switch_channel_flag_t {
|
|||
CF_VIDEO_ECHO,
|
||||
CF_SLA_INTERCEPT,
|
||||
CF_VIDEO_BREAK,
|
||||
CF_MEDIA_PAUSE,
|
||||
CF_FLAG_MAX
|
||||
}
|
||||
|
||||
|
@ -35305,6 +35313,8 @@ public enum switch_rtp_flag_t {
|
|||
SWITCH_RTP_FLAG_KILL_JB,
|
||||
SWITCH_RTP_FLAG_VIDEO_BREAK,
|
||||
SWITCH_RTP_FLAG_PAUSE,
|
||||
SWITCH_RTP_FLAG_FIR,
|
||||
SWITCH_RTP_FLAG_PLI,
|
||||
SWITCH_RTP_FLAG_INVALID
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue