This commit is contained in:
Brian West 2014-04-05 13:42:59 -05:00
parent d621262db1
commit fb61a66770
2 changed files with 16 additions and 0 deletions

View File

@ -29921,6 +29921,14 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_channel_api_on(void * jarg1, char * jar
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_channel_process_device_hangup(void * jarg1) {
switch_channel_t *arg1 = (switch_channel_t *) 0 ;
arg1 = (switch_channel_t *)jarg1;
switch_channel_process_device_hangup(arg1);
}
SWIGEXPORT void * SWIGSTDCALL CSharp_switch_channel_get_queued_extension(void * jarg1) {
void * jresult ;
switch_channel_t *arg1 = (switch_channel_t *) 0 ;

View File

@ -4453,6 +4453,10 @@ public class freeswitch {
return ret;
}
public static void switch_channel_process_device_hangup(SWIGTYPE_p_switch_channel channel) {
freeswitchPINVOKE.switch_channel_process_device_hangup(SWIGTYPE_p_switch_channel.getCPtr(channel));
}
public static switch_caller_extension switch_channel_get_queued_extension(SWIGTYPE_p_switch_channel channel) {
IntPtr cPtr = freeswitchPINVOKE.switch_channel_get_queued_extension(SWIGTYPE_p_switch_channel.getCPtr(channel));
switch_caller_extension ret = (cPtr == IntPtr.Zero) ? null : new switch_caller_extension(cPtr, false);
@ -14041,6 +14045,9 @@ class freeswitchPINVOKE {
[DllImport("mod_managed", EntryPoint="CSharp_switch_channel_api_on")]
public static extern int switch_channel_api_on(HandleRef jarg1, string jarg2);
[DllImport("mod_managed", EntryPoint="CSharp_switch_channel_process_device_hangup")]
public static extern void switch_channel_process_device_hangup(HandleRef jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_channel_get_queued_extension")]
public static extern IntPtr switch_channel_get_queued_extension(HandleRef jarg1);
@ -25316,6 +25323,7 @@ public enum switch_channel_flag_t {
CF_NOVIDEO,
CF_VIDEO_ECHO,
CF_SLA_INTERCEPT,
CF_HANGUP_HELD,
CF_FLAG_MAX
}