Removed unused API function call_peeruri

This commit is contained in:
Juha Heinanen
2022-02-22 10:16:25 +02:00
parent cab84308a3
commit adfbd16d31
2 changed files with 0 additions and 11 deletions

View File

@ -1363,16 +1363,6 @@ Java_com_tutpro_baresip_Call_call_1transfer(JNIEnv *env, jobject thiz, jstring j
return err;
}
JNIEXPORT jstring JNICALL
Java_com_tutpro_baresip_Api_call_1peeruri(JNIEnv *env, jobject thiz, jstring javaCall)
{
const char *native_call = (*env)->GetStringUTFChars(env, javaCall, 0);
struct call *call;
call = (struct call *)strtoul(native_call, NULL, 10);
(*env)->ReleaseStringUTFChars(env, javaCall, native_call);
return (*env)->NewStringUTF(env, call_peeruri(call));
}
JNIEXPORT jint JNICALL
Java_com_tutpro_baresip_Call_call_1send_1digit(JNIEnv *env, jobject thiz, jstring javaCall,
jchar digit) {

View File

@ -60,7 +60,6 @@ object Api {
external fun ua_debug(uap: String)
external fun calls_mute(mute: Boolean)
external fun call_peeruri(callp: String): String
external fun message_send(uap: String, peer_uri: String, message: String, time: String): Int