]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
swigall
authorBrian West <brian@freeswitch.org>
Thu, 10 Dec 2009 01:44:26 +0000 (01:44 +0000)
committerBrian West <brian@freeswitch.org>
Thu, 10 Dec 2009 01:44:26 +0000 (01:44 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15866 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_managed/freeswitch_wrap.cxx
src/mod/languages/mod_managed/managed/swig.cs

index a8befde7a85284b4b2a32ce3d73d3e40fc2172d6..46ae163ea3dbe2c19dd3bf3109b81fdcfb1deaab 100644 (file)
@@ -6870,15 +6870,17 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_session_dequeue_event(void * jarg1
 }
 
 
-SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_session_queue_private_event(void * jarg1, void * jarg2) {
+SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_session_queue_private_event(void * jarg1, void * jarg2, int jarg3) {
   int jresult ;
   switch_core_session_t *arg1 = (switch_core_session_t *) 0 ;
   switch_event_t **arg2 = (switch_event_t **) 0 ;
+  switch_bool_t arg3 ;
   switch_status_t result;
   
   arg1 = (switch_core_session_t *)jarg1; 
   arg2 = (switch_event_t **)jarg2; 
-  result = (switch_status_t)switch_core_session_queue_private_event(arg1,arg2);
+  arg3 = (switch_bool_t)jarg3; 
+  result = (switch_status_t)switch_core_session_queue_private_event(arg1,arg2,arg3);
   jresult = result; 
   return jresult;
 }
index 842cb81b541e853517587ff228a3552b69076cd1..765d964cff47c87cbb36bf10970aa7208a4d7665 100644 (file)
@@ -1434,8 +1434,8 @@ public class freeswitch {
     return ret;
   }
 
-  public static switch_status_t switch_core_session_queue_private_event(SWIGTYPE_p_switch_core_session session, SWIGTYPE_p_p_switch_event arg1) {
-    switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_session_queue_private_event(SWIGTYPE_p_switch_core_session.getCPtr(session), SWIGTYPE_p_p_switch_event.getCPtr(arg1));
+  public static switch_status_t switch_core_session_queue_private_event(SWIGTYPE_p_switch_core_session session, SWIGTYPE_p_p_switch_event arg1, switch_bool_t priority) {
+    switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_session_queue_private_event(SWIGTYPE_p_switch_core_session.getCPtr(session), SWIGTYPE_p_p_switch_event.getCPtr(arg1), (int)priority);
     return ret;
   }
 
@@ -6497,7 +6497,7 @@ class freeswitchPINVOKE {
   public static extern int switch_core_session_dequeue_event(HandleRef jarg1, HandleRef jarg2, int jarg3);
 
   [DllImport("mod_managed", EntryPoint="CSharp_switch_core_session_queue_private_event")]
-  public static extern int switch_core_session_queue_private_event(HandleRef jarg1, HandleRef jarg2);
+  public static extern int switch_core_session_queue_private_event(HandleRef jarg1, HandleRef jarg2, int jarg3);
 
   [DllImport("mod_managed", EntryPoint="CSharp_switch_core_session_private_event_count")]
   public static extern uint switch_core_session_private_event_count(HandleRef jarg1);
@@ -19181,6 +19181,7 @@ public enum switch_channel_flag_t {
   CF_UNICAST,
   CF_VIDEO,
   CF_EVENT_LOCK,
+  CF_EVENT_LOCK_PRI,
   CF_RESET,
   CF_ORIGINATING,
   CF_STOP_BROADCAST,
@@ -24893,7 +24894,8 @@ namespace FreeSWITCH.Native {
   SMF_LOOP = (1 << 4),
   SMF_HOLD_BLEG = (1 << 5),
   SMF_IMMEDIATE = (1 << 6),
-  SMF_EXEC_INLINE = (1 << 7)
+  SMF_EXEC_INLINE = (1 << 7),
+  SMF_PRIORITY = (1 << 8)
 }
 
 }