mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 18:40:05 +00:00
- Nonblocking sockets - Better ShittyInternetMode - Fixed a bunch of bugs - Probably added some new bugs too
19 lines
265 B
C
19 lines
265 B
C
//
|
|
// Created by Grishka on 14.08.2018.
|
|
//
|
|
|
|
#ifndef TELEGRAM_TG_VOIP_JNI_H
|
|
#define TELEGRAM_TG_VOIP_JNI_H
|
|
|
|
#include <jni.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
void tgvoipRegisterNatives(JNIEnv* env);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //TELEGRAM_TG_VOIP_JNI_H
|