swigall
This commit is contained in:
parent
0b8fbb47b2
commit
f28babf358
|
@ -16856,6 +16856,11 @@ SWIGEXPORT char * SWIGSTDCALL CSharp_switch_version_full_human() {
|
|||
}
|
||||
|
||||
|
||||
SWIGEXPORT void SWIGSTDCALL CSharp_switch_core_autobind_cpu() {
|
||||
switch_core_autobind_cpu();
|
||||
}
|
||||
|
||||
|
||||
SWIGEXPORT void SWIGSTDCALL CSharp_switch_loadable_module_interface_module_name_set(void * jarg1, char * jarg2) {
|
||||
switch_loadable_module_interface *arg1 = (switch_loadable_module_interface *) 0 ;
|
||||
char *arg2 = (char *) 0 ;
|
||||
|
|
|
@ -3359,6 +3359,10 @@ public class freeswitch {
|
|||
return ret;
|
||||
}
|
||||
|
||||
public static void switch_core_autobind_cpu() {
|
||||
freeswitchPINVOKE.switch_core_autobind_cpu();
|
||||
}
|
||||
|
||||
public static switch_status_t switch_loadable_module_init(switch_bool_t autoload) {
|
||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_loadable_module_init((int)autoload);
|
||||
return ret;
|
||||
|
@ -11854,6 +11858,9 @@ class freeswitchPINVOKE {
|
|||
[DllImport("mod_managed", EntryPoint="CSharp_switch_version_full_human")]
|
||||
public static extern string switch_version_full_human();
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_autobind_cpu")]
|
||||
public static extern void switch_core_autobind_cpu();
|
||||
|
||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_loadable_module_interface_module_name_set")]
|
||||
public static extern void switch_loadable_module_interface_module_name_set(HandleRef jarg1, string jarg2);
|
||||
|
||||
|
|
Loading…
Reference in New Issue