summaryrefslogtreecommitdiffstats
path: root/make/resources/stubs_includes/jvm/jni_md.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-25 15:03:04 +0100
committerSven Gothel <[email protected]>2014-01-25 15:03:04 +0100
commitf51d6456ab2196bf8ce7d6b3c7ac6d71e9e0108b (patch)
tree27f793cb02a09b4735b5b379dc9ae18e8df43ee5 /make/resources/stubs_includes/jvm/jni_md.h
parent1bc4f882be2c8129521b1110e52bcda9c232f8f1 (diff)
parent9ecc606bce374ea093c6321f2d4921b5019a0b18 (diff)
Merge remote-tracking branch 'wwalker/bug_884_replace_netbeans_build_with_jogamp_standard_build'
Diffstat (limited to 'make/resources/stubs_includes/jvm/jni_md.h')
-rw-r--r--make/resources/stubs_includes/jvm/jni_md.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/make/resources/stubs_includes/jvm/jni_md.h b/make/resources/stubs_includes/jvm/jni_md.h
new file mode 100644
index 00000000..44978627
--- /dev/null
+++ b/make/resources/stubs_includes/jvm/jni_md.h
@@ -0,0 +1,15 @@
+#define _JNI_IMPORT_OR_EXPORT_
+#define JNIEXPORT
+#define JNIIMPORT
+#define JNICALL
+
+typedef int jint;
+#ifdef _LP64 /* 64-bit Solaris */
+typedef long jlong;
+#else
+typedef long long jlong;
+#endif
+
+typedef signed char jbyte;
+
+typedef long JNIEnv;