This commit is contained in:
Anthony Minessale
2013-10-15 15:31:28 -05:00
parent 4a172402d2
commit c94dd25e4e
8 changed files with 1479 additions and 46 deletions
@@ -521,13 +521,16 @@ SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_IVRMenu_1execute(
}
SWIGEXPORT jlong JNICALL Java_org_freeswitch_swig_freeswitchJNI_new_1API(JNIEnv *jenv, jclass jcls) {
SWIGEXPORT jlong JNICALL Java_org_freeswitch_swig_freeswitchJNI_new_1API(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_) {
jlong jresult = 0 ;
CoreSession *arg1 = (CoreSession *) NULL ;
API *result = 0 ;
(void)jenv;
(void)jcls;
result = (API *)new API();
(void)jarg1_;
arg1 = *(CoreSession **)&jarg1;
result = (API *)new API(arg1);
*(API **)&jresult = result;
return jresult;
}