]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
swigall
authorAnthony Minessale <anthm@freeswitch.org>
Thu, 20 Jun 2013 16:41:34 +0000 (11:41 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Thu, 20 Jun 2013 16:41:34 +0000 (11:41 -0500)
src/mod/languages/mod_managed/freeswitch_wrap.cxx
src/mod/languages/mod_managed/managed/swig.cs

index 85a603a9577a4f69b74df2da91bde6c6fe8fb964..840c08a27f14394d9ed7514eb34e7d55265e0131 100644 (file)
@@ -41467,6 +41467,18 @@ SWIGEXPORT void SWIGSTDCALL CSharp_CoreSession_check_hangup_hook(void * jarg1) {
 }
 
 
+SWIGEXPORT void SWIGSTDCALL CSharp_CoreSession_consoleLog(void * jarg1, char * jarg2, char * jarg3) {
+  CoreSession *arg1 = (CoreSession *) 0 ;
+  char *arg2 = (char *) 0 ;
+  char *arg3 = (char *) 0 ;
+  
+  arg1 = (CoreSession *)jarg1; 
+  arg2 = (char *)jarg2; 
+  arg3 = (char *)jarg3; 
+  (arg1)->consoleLog(arg2,arg3);
+}
+
+
 SWIGEXPORT void SWIGSTDCALL CSharp_console_log(char * jarg1, char * jarg2) {
   char *arg1 = (char *) 0 ;
   char *arg2 = (char *) 0 ;
index 9daf25b26f9ca0f500847c9af5b8db0e2e742424..a18e0c4d6edb24b481ad4f48e392acc0bddf6da7 100644 (file)
@@ -416,6 +416,10 @@ public class CoreSession : IDisposable {
     freeswitchPINVOKE.CoreSession_check_hangup_hook(swigCPtr);
   }
 
+  public void consoleLog(string level_str, string msg) {
+    freeswitchPINVOKE.CoreSession_consoleLog(swigCPtr, level_str, msg);
+  }
+
 }
 
 }
@@ -22503,6 +22507,9 @@ class freeswitchPINVOKE {
   [DllImport("mod_managed", EntryPoint="CSharp_CoreSession_check_hangup_hook")]
   public static extern void CoreSession_check_hangup_hook(HandleRef jarg1);
 
+  [DllImport("mod_managed", EntryPoint="CSharp_CoreSession_consoleLog")]
+  public static extern void CoreSession_consoleLog(HandleRef jarg1, string jarg2, string jarg3);
+
   [DllImport("mod_managed", EntryPoint="CSharp_console_log")]
   public static extern void console_log(string jarg1, string jarg2);
 
@@ -25763,6 +25770,7 @@ public enum switch_channel_flag_t {
   CF_VERBOSE_SDP,
   CF_DTLS_OK,
   CF_VIDEO_PASSIVE,
+  CF_NOVIDEO,
   CF_FLAG_MAX
 }