summaryrefslogtreecommitdiff
path: root/navit/android.h
blob: 84643e7e72bbd7cbe37d7a982ff20b68b3c50dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifdef HAVE_API_ANDROID

#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;
};

#else

struct jni_object {
	int dummy;
};

#endif