Code

Patch by theAdib which fixes 397075
[inkscape.git] / src / bind / javainc / linux / jni_md.h
1 /**
2  * This file should be replaced by the "official" jni_md.h
3  * for linux
4  */
5 #ifndef __JNI_MD_H__
6 #define __JNI_MD_H__
8 /**
9  * Nothing special for these declspecs for Linux.  Leave alone.
10  */
11 #define JNIEXPORT
12 #define JNIIMPORT
13 #define JNICALL
15 typedef signed char jbyte;
16 typedef int jint;
18 /* 64 bit? */
19 #ifdef _LP64
20 typedef long jlong;
21 #else
22 typedef long long jlong;
23 #endif
26 #endif /* __JNI_MD_H__ */