Fix:map_csv:Disable default notification of each deleted item.
[profile/ivi/navit.git] / navit / navit / android.h
1 #ifdef HAVE_API_ANDROID
2
3 #include <jni.h>
4 extern JNIEnv *jnienv;
5 extern jobject *android_activity;
6 extern int android_version;
7 int android_find_class_global(char *name, jclass *ret);
8 int android_find_method(jclass class, char *name, char *args, jmethodID *ret);
9 int android_find_static_method(jclass class, char *name, char *args, jmethodID *ret);
10
11 struct jni_object {
12         JNIEnv* env;
13         jobject jo;
14         jmethodID jm;
15 };
16
17 #else
18
19 struct jni_object {
20         int dummy;
21 };
22
23 #endif