Skip to content

Commit 6ae8ce6

Browse files
committed
swigall
1 parent 86cbda9 commit 6ae8ce6

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

src/mod/languages/mod_managed/freeswitch_wrap.cxx

+44
Original file line numberDiff line numberDiff line change
@@ -45237,6 +45237,50 @@ SWIGEXPORT unsigned char SWIGSTDCALL CSharp_FreeSWITCHfNative_icand_t_ready_get_
4523745237
}
4523845238

4523945239

45240+
SWIGEXPORT void SWIGSTDCALL CSharp_FreeSWITCHfNative_icand_t_responsive_set___(void * jarg1, unsigned char jarg2) {
45241+
icand_s *arg1 = (icand_s *) 0 ;
45242+
uint8_t arg2 ;
45243+
45244+
arg1 = (icand_s *)jarg1;
45245+
arg2 = (uint8_t)jarg2;
45246+
if (arg1) (arg1)->responsive = arg2;
45247+
}
45248+
45249+
45250+
SWIGEXPORT unsigned char SWIGSTDCALL CSharp_FreeSWITCHfNative_icand_t_responsive_get___(void * jarg1) {
45251+
unsigned char jresult ;
45252+
icand_s *arg1 = (icand_s *) 0 ;
45253+
uint8_t result;
45254+
45255+
arg1 = (icand_s *)jarg1;
45256+
result = (uint8_t) ((arg1)->responsive);
45257+
jresult = result;
45258+
return jresult;
45259+
}
45260+
45261+
45262+
SWIGEXPORT void SWIGSTDCALL CSharp_FreeSWITCHfNative_icand_t_use_candidate_set___(void * jarg1, unsigned char jarg2) {
45263+
icand_s *arg1 = (icand_s *) 0 ;
45264+
uint8_t arg2 ;
45265+
45266+
arg1 = (icand_s *)jarg1;
45267+
arg2 = (uint8_t)jarg2;
45268+
if (arg1) (arg1)->use_candidate = arg2;
45269+
}
45270+
45271+
45272+
SWIGEXPORT unsigned char SWIGSTDCALL CSharp_FreeSWITCHfNative_icand_t_use_candidate_get___(void * jarg1) {
45273+
unsigned char jresult ;
45274+
icand_s *arg1 = (icand_s *) 0 ;
45275+
uint8_t result;
45276+
45277+
arg1 = (icand_s *)jarg1;
45278+
result = (uint8_t) ((arg1)->use_candidate);
45279+
jresult = result;
45280+
return jresult;
45281+
}
45282+
45283+
4524045284
SWIGEXPORT void * SWIGSTDCALL CSharp_FreeSWITCHfNative_new_icand_t___() {
4524145285
void * jresult ;
4524245286
icand_s *result = 0 ;

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

+32
Original file line numberDiff line numberDiff line change
@@ -26316,6 +26316,18 @@ static SWIGStringHelper() {
2631626316
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_icand_t_ready_get___")]
2631726317
public static extern byte icand_t_ready_get(global::System.Runtime.InteropServices.HandleRef jarg1);
2631826318

26319+
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_icand_t_responsive_set___")]
26320+
public static extern void icand_t_responsive_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
26321+
26322+
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_icand_t_responsive_get___")]
26323+
public static extern byte icand_t_responsive_get(global::System.Runtime.InteropServices.HandleRef jarg1);
26324+
26325+
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_icand_t_use_candidate_set___")]
26326+
public static extern void icand_t_use_candidate_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
26327+
26328+
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_icand_t_use_candidate_get___")]
26329+
public static extern byte icand_t_use_candidate_get(global::System.Runtime.InteropServices.HandleRef jarg1);
26330+
2631926331
[global::System.Runtime.InteropServices.DllImport("mod_managed", EntryPoint="CSharp_FreeSWITCHfNative_new_icand_t___")]
2632026332
public static extern global::System.IntPtr new_icand_t();
2632126333

@@ -28339,6 +28351,26 @@ public byte ready {
2833928351
}
2834028352
}
2834128353

28354+
public byte responsive {
28355+
set {
28356+
freeswitchPINVOKE.icand_t_responsive_set(swigCPtr, value);
28357+
}
28358+
get {
28359+
byte ret = freeswitchPINVOKE.icand_t_responsive_get(swigCPtr);
28360+
return ret;
28361+
}
28362+
}
28363+
28364+
public byte use_candidate {
28365+
set {
28366+
freeswitchPINVOKE.icand_t_use_candidate_set(swigCPtr, value);
28367+
}
28368+
get {
28369+
byte ret = freeswitchPINVOKE.icand_t_use_candidate_get(swigCPtr);
28370+
return ret;
28371+
}
28372+
}
28373+
2834228374
public icand_t() : this(freeswitchPINVOKE.new_icand_t(), true) {
2834328375
}
2834428376

0 commit comments

Comments
 (0)