swigall
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8544 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
293cc74d47
commit
d2290cfa3a
|
@ -117,8 +117,8 @@ public class CoreSession {
|
||||||
return freeswitchJNI.CoreSession_getVariable(swigCPtr, this, var);
|
return freeswitchJNI.CoreSession_getVariable(swigCPtr, this, var);
|
||||||
}
|
}
|
||||||
|
|
||||||
public SWIGTYPE_p_switch_status_t process_callback_result(String ret) {
|
public SWIGTYPE_p_switch_status_t process_callback_result(String result) {
|
||||||
return new SWIGTYPE_p_switch_status_t(freeswitchJNI.CoreSession_process_callback_result(swigCPtr, this, ret), true);
|
return new SWIGTYPE_p_switch_status_t(freeswitchJNI.CoreSession_process_callback_result(swigCPtr, this, result), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void say(String tosay, String module_name, String say_type, String say_method) {
|
public void say(String tosay, String module_name, String say_type, String say_method) {
|
||||||
|
|
|
@ -4675,7 +4675,7 @@ XS(_wrap_CoreSession_process_callback_result) {
|
||||||
dXSARGS;
|
dXSARGS;
|
||||||
|
|
||||||
if ((items < 2) || (items > 2)) {
|
if ((items < 2) || (items > 2)) {
|
||||||
SWIG_croak("Usage: CoreSession_process_callback_result(self,ret);");
|
SWIG_croak("Usage: CoreSession_process_callback_result(self,result);");
|
||||||
}
|
}
|
||||||
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_CoreSession, 0 | 0 );
|
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_CoreSession, 0 | 0 );
|
||||||
if (!SWIG_IsOK(res1)) {
|
if (!SWIG_IsOK(res1)) {
|
||||||
|
|
Loading…
Reference in New Issue