]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
swig
authorBrian West <brian@freeswitch.org>
Sat, 5 Apr 2014 18:42:59 +0000 (13:42 -0500)
committerBrian West <brian@freeswitch.org>
Sat, 5 Apr 2014 18:42:59 +0000 (13:42 -0500)
src/mod/languages/mod_managed/freeswitch_wrap.cxx
src/mod/languages/mod_managed/managed/swig.cs

index 88f2fbc25bfb0984124ad13083622b02a0ee794a..12f35870f7b09d133f96e4304962182ea584b946 100644 (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 ;
index 903115b39356dd322f4c1c2a24ba5183b76eb953..8f67d9e1c8765bc8a8350ddccabd134b6221e171 100644 (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
 }