mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-12 23:40:04 +00:00
swigall
This commit is contained in:
parent
3c0d537107
commit
c6137874d5
@ -20806,13 +20806,77 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_destroy(void * jarg1) {
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_create(void * jarg1) {
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_create(void * jarg1, void * jarg2) {
|
||||
int jresult ;
|
||||
switch_frame_buffer_t **arg1 = (switch_frame_buffer_t **) 0 ;
|
||||
switch_size_t arg2 ;
|
||||
switch_size_t *argp2 ;
|
||||
switch_status_t result;
|
||||
|
||||
arg1 = (switch_frame_buffer_t **)jarg1;
|
||||
result = (switch_status_t)switch_frame_buffer_create(arg1);
|
||||
argp2 = (switch_size_t *)jarg2;
|
||||
if (!argp2) {
|
||||
SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "Attempt to dereference null switch_size_t", 0);
|
||||
return 0;
|
||||
}
|
||||
arg2 = *argp2;
|
||||
result = (switch_status_t)switch_frame_buffer_create(arg1,arg2);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_push(void * jarg1, void * jarg2) {
|
||||
int jresult ;
|
||||
switch_frame_buffer_t *arg1 = (switch_frame_buffer_t *) 0 ;
|
||||
void *arg2 = (void *) 0 ;
|
||||
switch_status_t result;
|
||||
|
||||
arg1 = (switch_frame_buffer_t *)jarg1;
|
||||
arg2 = (void *)jarg2;
|
||||
result = (switch_status_t)switch_frame_buffer_push(arg1,arg2);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_trypush(void * jarg1, void * jarg2) {
|
||||
int jresult ;
|
||||
switch_frame_buffer_t *arg1 = (switch_frame_buffer_t *) 0 ;
|
||||
void *arg2 = (void *) 0 ;
|
||||
switch_status_t result;
|
||||
|
||||
arg1 = (switch_frame_buffer_t *)jarg1;
|
||||
arg2 = (void *)jarg2;
|
||||
result = (switch_status_t)switch_frame_buffer_trypush(arg1,arg2);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_pop(void * jarg1, void * jarg2) {
|
||||
int jresult ;
|
||||
switch_frame_buffer_t *arg1 = (switch_frame_buffer_t *) 0 ;
|
||||
void **arg2 = (void **) 0 ;
|
||||
switch_status_t result;
|
||||
|
||||
arg1 = (switch_frame_buffer_t *)jarg1;
|
||||
arg2 = (void **)jarg2;
|
||||
result = (switch_status_t)switch_frame_buffer_pop(arg1,arg2);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_frame_buffer_trypop(void * jarg1, void * jarg2) {
|
||||
int jresult ;
|
||||
switch_frame_buffer_t *arg1 = (switch_frame_buffer_t *) 0 ;
|
||||
void **arg2 = (void **) 0 ;
|
||||
switch_status_t result;
|
||||
|
||||
arg1 = (switch_frame_buffer_t *)jarg1;
|
||||
arg2 = (void **)jarg2;
|
||||
result = (switch_status_t)switch_frame_buffer_trypop(arg1,arg2);
|
||||
jresult = result;
|
||||
return jresult;
|
||||
}
|
||||
|
@ -4441,8 +4441,29 @@ else
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static switch_status_t switch_frame_buffer_create(SWIGTYPE_p_p_switch_frame_buffer_s fbP) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_create(SWIGTYPE_p_p_switch_frame_buffer_s.getCPtr(fbP));
|
||||
public static switch_status_t switch_frame_buffer_create(SWIGTYPE_p_p_switch_frame_buffer_s fbP, SWIGTYPE_p_switch_size_t qlen) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_create(SWIGTYPE_p_p_switch_frame_buffer_s.getCPtr(fbP), SWIGTYPE_p_switch_size_t.getCPtr(qlen));
|
||||
if (freeswitchPINVOKE.SWIGPendingException.Pending) throw freeswitchPINVOKE.SWIGPendingException.Retrieve();
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static switch_status_t switch_frame_buffer_push(SWIGTYPE_p_switch_frame_buffer_s fb, SWIGTYPE_p_void ptr) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_push(SWIGTYPE_p_switch_frame_buffer_s.getCPtr(fb), SWIGTYPE_p_void.getCPtr(ptr));
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static switch_status_t switch_frame_buffer_trypush(SWIGTYPE_p_switch_frame_buffer_s fb, SWIGTYPE_p_void ptr) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_trypush(SWIGTYPE_p_switch_frame_buffer_s.getCPtr(fb), SWIGTYPE_p_void.getCPtr(ptr));
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static switch_status_t switch_frame_buffer_pop(SWIGTYPE_p_switch_frame_buffer_s fb, SWIGTYPE_p_p_void ptr) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_pop(SWIGTYPE_p_switch_frame_buffer_s.getCPtr(fb), SWIGTYPE_p_p_void.getCPtr(ptr));
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static switch_status_t switch_frame_buffer_trypop(SWIGTYPE_p_switch_frame_buffer_s fb, SWIGTYPE_p_p_void ptr) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_frame_buffer_trypop(SWIGTYPE_p_switch_frame_buffer_s.getCPtr(fb), SWIGTYPE_p_p_void.getCPtr(ptr));
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -12976,7 +12997,19 @@ class freeswitchPINVOKE {
|
||||
public static extern int switch_frame_buffer_destroy(HandleRef jarg1);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_frame_buffer_create")]
|
||||
public static extern int switch_frame_buffer_create(HandleRef jarg1);
|
||||
public static extern int switch_frame_buffer_create(HandleRef jarg1, HandleRef jarg2);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_frame_buffer_push")]
|
||||
public static extern int switch_frame_buffer_push(HandleRef jarg1, HandleRef jarg2);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_frame_buffer_trypush")]
|
||||
public static extern int switch_frame_buffer_trypush(HandleRef jarg1, HandleRef jarg2);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_frame_buffer_pop")]
|
||||
public static extern int switch_frame_buffer_pop(HandleRef jarg1, HandleRef jarg2);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_frame_buffer_trypop")]
|
||||
public static extern int switch_frame_buffer_trypop(HandleRef jarg1, HandleRef jarg2);
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_cputime_userms_set")]
|
||||
public static extern void switch_cputime_userms_set(HandleRef jarg1, long jarg2);
|
||||
@ -20529,6 +20562,7 @@ public enum rtcp_psfb_t {
|
||||
namespace FreeSWITCH.Native {
|
||||
|
||||
public enum rtcp_pt_t {
|
||||
_RTCP_PT_FIR = 192,
|
||||
_RTCP_PT_IJ = 195,
|
||||
_RTCP_PT_SR = 200,
|
||||
_RTCP_PT_RR = 201,
|
||||
@ -37341,7 +37375,8 @@ namespace FreeSWITCH.Native {
|
||||
SWITCH_IO_FLAG_NONE = 0,
|
||||
SWITCH_IO_FLAG_NOBLOCK = (1 << 0),
|
||||
SWITCH_IO_FLAG_SINGLE_READ = (1 << 1),
|
||||
SWITCH_IO_FLAG_FORCE = (1 << 2)
|
||||
SWITCH_IO_FLAG_FORCE = (1 << 2),
|
||||
SWITCH_IO_FLAG_QUEUED = (1 << 3)
|
||||
}
|
||||
|
||||
}
|
||||
@ -39917,8 +39952,10 @@ public enum switch_rtp_flag_t {
|
||||
SWITCH_RTP_FLAG_NACK,
|
||||
SWITCH_RTP_FLAG_TMMBR,
|
||||
SWITCH_RTP_FLAG_GEN_TS_DELTA,
|
||||
SWITCH_RTP_FLAG_GEN_TS_MANUAL,
|
||||
SWITCH_RTP_FLAG_DETECT_SSRC,
|
||||
SWITCH_RTP_FLAG_TEXT,
|
||||
SWITCH_RTP_FLAG_OLD_FIR,
|
||||
SWITCH_RTP_FLAG_INVALID
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user