I am having a hard time finding an answer to this. But, what is \"jboject thiz\" used for in JNI function calls? For example:
jobjectArray Java_com_gnychis
jobject thiz means the this in java class.
jobject thiz
this
Sometimes if you create a static native method like this.
static native
void Java_MyClass_method1 (JNIEnv *, jclass);
jclass means the class itself.
jclass