jni.h
provide this
struct JNINativeInterface_ {
...
jint (JNICALL *GetVersion)(JNIEnv *env);
...
}
to call it in C
can be written as
void test(JNIEnv *env){
// C
jint version = (*env)->GetVersion(env);
// C++
// jint version = env->GetVersion();
}
and then how can I do it in kotlin?
fun test(env: CPointer<JNIEnvVar>){
val version = // how?
}
After searching answer in google there are few example for Kotlin/Native
with JNI
but they're just basic example please help.
Thanks in advance.
Thanks to Michael.
Long answer is
hope this can help somebody to understand Kotlin/Native .