This commit is contained in:
Anthony Minessale 2013-06-20 11:41:34 -05:00
parent 9cc21d28fc
commit b0f964f23f
2 changed files with 20 additions and 0 deletions

View 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 ;

View 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
}