Removed unused API function

This commit is contained in:
Juha Heinanen
2022-06-09 10:44:21 +03:00
parent c8042b8efb
commit ec8119c3f2
2 changed files with 0 additions and 8 deletions

View File

@ -1041,13 +1041,6 @@ Java_com_tutpro_baresip_Api_ua_1isregistered(JNIEnv *env, jobject thiz, jlong ua
return ua_isregistered((struct ua *)ua) ? true : false;
}
JNIEXPORT jint JNICALL
Java_com_tutpro_baresip_Api_ua_1update_1account(JNIEnv *env, jobject thiz, jlong ua)
{
LOGD("updating account of ua %ld\n", (long)ua);
return ua_update_account((struct ua *)ua);
}
JNIEXPORT void JNICALL
Java_com_tutpro_baresip_Api_ua_1destroy(JNIEnv *env, jobject thiz, jlong ua)
{

View File

@ -49,7 +49,6 @@ object Api {
external fun ua_account(uap: Long): Long
external fun ua_alloc(uri: String): Long
external fun ua_update_account(uap: Long): Int
external fun ua_destroy(uap: Long)
external fun ua_register(uap: Long): Int
external fun ua_isregistered(uap: Long): Boolean