mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-26 20:48:21 +00:00
vs2010 reswig
This commit is contained in:
parent
08955a2b29
commit
4f4294327d
@ -6298,6 +6298,20 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_remove_all(void * jarg1)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_enumerate(void * jarg1, void * jarg2) {
|
||||||
|
int jresult ;
|
||||||
|
switch_core_session_t *arg1 = (switch_core_session_t *) 0 ;
|
||||||
|
switch_stream_handle_t *arg2 = (switch_stream_handle_t *) 0 ;
|
||||||
|
switch_status_t result;
|
||||||
|
|
||||||
|
arg1 = (switch_core_session_t *)jarg1;
|
||||||
|
arg2 = (switch_stream_handle_t *)jarg2;
|
||||||
|
result = (switch_status_t)switch_core_media_bug_enumerate(arg1,arg2);
|
||||||
|
jresult = result;
|
||||||
|
return jresult;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_read(void * jarg1, void * jarg2, int jarg3) {
|
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_read(void * jarg1, void * jarg2, int jarg3) {
|
||||||
int jresult ;
|
int jresult ;
|
||||||
switch_media_bug_t *arg1 = (switch_media_bug_t *) 0 ;
|
switch_media_bug_t *arg1 = (switch_media_bug_t *) 0 ;
|
||||||
|
@ -1055,6 +1055,11 @@ public class freeswitch {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static switch_status_t switch_core_media_bug_enumerate(SWIGTYPE_p_switch_core_session session, switch_stream_handle stream) {
|
||||||
|
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_media_bug_enumerate(SWIGTYPE_p_switch_core_session.getCPtr(session), switch_stream_handle.getCPtr(stream));
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
public static switch_status_t switch_core_media_bug_read(SWIGTYPE_p_switch_media_bug bug, switch_frame frame, switch_bool_t fill) {
|
public static switch_status_t switch_core_media_bug_read(SWIGTYPE_p_switch_media_bug bug, switch_frame frame, switch_bool_t fill) {
|
||||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_media_bug_read(SWIGTYPE_p_switch_media_bug.getCPtr(bug), switch_frame.getCPtr(frame), (int)fill);
|
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_media_bug_read(SWIGTYPE_p_switch_media_bug.getCPtr(bug), switch_frame.getCPtr(frame), (int)fill);
|
||||||
return ret;
|
return ret;
|
||||||
@ -7283,6 +7288,9 @@ class freeswitchPINVOKE {
|
|||||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_remove_all")]
|
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_remove_all")]
|
||||||
public static extern int switch_core_media_bug_remove_all(HandleRef jarg1);
|
public static extern int switch_core_media_bug_remove_all(HandleRef jarg1);
|
||||||
|
|
||||||
|
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_enumerate")]
|
||||||
|
public static extern int switch_core_media_bug_enumerate(HandleRef jarg1, HandleRef jarg2);
|
||||||
|
|
||||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_read")]
|
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_read")]
|
||||||
public static extern int switch_core_media_bug_read(HandleRef jarg1, HandleRef jarg2, int jarg3);
|
public static extern int switch_core_media_bug_read(HandleRef jarg1, HandleRef jarg2, int jarg3);
|
||||||
|
|
||||||
@ -21579,6 +21587,8 @@ public enum switch_channel_flag_t {
|
|||||||
CF_RECOVERED,
|
CF_RECOVERED,
|
||||||
CF_JITTERBUFFER,
|
CF_JITTERBUFFER,
|
||||||
CF_DIALPLAN,
|
CF_DIALPLAN,
|
||||||
|
CF_BLOCK_BROADCAST_UNTIL_MEDIA,
|
||||||
|
CF_CNG_PLC,
|
||||||
CF_FLAG_MAX
|
CF_FLAG_MAX
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23269,6 +23279,7 @@ public enum switch_core_session_message_types_t {
|
|||||||
SWITCH_MESSAGE_INDICATE_UDPTL_MODE,
|
SWITCH_MESSAGE_INDICATE_UDPTL_MODE,
|
||||||
SWITCH_MESSAGE_INDICATE_CLEAR_PROGRESS,
|
SWITCH_MESSAGE_INDICATE_CLEAR_PROGRESS,
|
||||||
SWITCH_MESSAGE_INDICATE_JITTER_BUFFER,
|
SWITCH_MESSAGE_INDICATE_JITTER_BUFFER,
|
||||||
|
SWITCH_MESSAGE_INDICATE_RECOVERY_REFRESH,
|
||||||
SWITCH_MESSAGE_INVALID
|
SWITCH_MESSAGE_INVALID
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user