We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fce3ff commit 2ca6866Copy full SHA for 2ca6866
jni-c-toxcore/jni-c-toxcore.c
@@ -3364,6 +3364,18 @@ Java_com_zoffcc_applications_trifa_MainActivity_tox_1get_1all_1udp_1connections(
3364
return result;
3365
}
3366
3367
+
3368
+JNIEXPORT jint JNICALL
3369
+Java_com_zoffcc_applications_trifa_MainActivity_tox_1callback_1friend_1lossless_1packet_1per_1pktid(JNIEnv *env, jobject thiz, int pktid)
3370
+{
3371
+ TRACE_LOGGER();
3372
+ if(tox_global == NULL)
3373
+ {
3374
+ return -1;
3375
+ }
3376
+ tox_callback_friend_lossless_packet_per_pktid(tox_global, friend_lossless_packet_cb, pktid);
3377
+}
3378
3379
JNIEXPORT jstring JNICALL
3380
Java_com_zoffcc_applications_trifa_MainActivity_get_1my_1toxid(JNIEnv *env, jobject thiz)
3381
{
0 commit comments