summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9e2f588)
raw | patch | inline | side by side (parent: 9e2f588)
author | ishmal <ishmal@users.sourceforge.net> | |
Sun, 9 Mar 2008 00:54:57 +0000 (00:54 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Sun, 9 Mar 2008 00:54:57 +0000 (00:54 +0000) |
src/bind/javainc/linux/jni_md.h | [new file with mode: 0644] | patch | blob |
diff --git a/src/bind/javainc/linux/jni_md.h b/src/bind/javainc/linux/jni_md.h
--- /dev/null
@@ -0,0 +1,26 @@
+/**
+ * This file should be replaced by the "official" jni_md.h
+ * for linux
+ */
+#ifndef __JNI_MD_H__
+#define __JNI_MD_H__
+
+/**
+ * Nothing special for these declspecs for Linux. Leave alone.
+ */
+#define JNIEXPORT
+#define JNIIMPORT
+#define JNICALL
+
+typedef signed char jbyte;
+typedef int jint;
+
+/* 64 bit? */
+#ifdef _LP64
+typedef long jlong;
+#else
+typedef long long jlong;
+#endif
+
+
+#endif /* __JNI_MD_H__ */