blob: 24774d0e52e722a6a8ee6262cf49789ddddaafd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <jni.h>
extern JNIEnv *jnienv;
extern jobject *android_activity;
extern int android_version;
int android_find_class_global(char *name, jclass *ret);
int android_find_method(jclass class, char *name, char *args, jmethodID *ret);
int android_find_static_method(jclass class, char *name, char *args, jmethodID *ret);
struct jni_object {
JNIEnv* env;
jobject jo;
jmethodID jm;
};
|