jni.h (JNIIMPORT): New macro.
authorTom Tromey <tromey@gcc.gnu.org>
Mon, 18 Mar 2002 21:55:42 +0000 (21:55 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 18 Mar 2002 21:55:42 +0000 (21:55 +0000)
* include/jni.h (JNIIMPORT): New macro.
(JNIEXPORT): Likewise.
(JNICALL): Likewise.

From-SVN: r51009

libjava/ChangeLog
libjava/include/jni.h

index 352e2d1201540486723735e4fc31a2550fac5b7e..78785861a435a36595fb187481ffe56273900561 100644 (file)
@@ -1,3 +1,14 @@
+2002-03-18  Tom Tromey  <tromey@redhat.com>
+
+       * include/jni.h (JNIIMPORT): New macro.
+       (JNIEXPORT): Likewise.
+       (JNICALL): Likewise.
+
+2002-03-18  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * configure.host (i?86-*): Use -fuse-divide-subroutine on Solaris
+       systems.
+
 2002-03-18  Andrew Haley  <aph@cambridge.redhat.com>
 
        * include/i386-signal.h (old_i386_kernel_sigaction): New.
index d41a6a2d234a91bea0b585a0d9f5d83fa22ead9a..5510079b8a19613f2b6019ef29412165c498f848 100644 (file)
@@ -172,6 +172,12 @@ typedef void *jmethodID;
 #define JNI_EDETACHED    -2
 #define JNI_EVERSION     -3
 
+/* Linkage and calling conventions.  This will need updating when we
+   support Windows DLLs.  */
+#define JNIIMPORT
+#define JNIEXPORT
+#define JNICALL
+
 #ifdef __cplusplus
 extern "C"
 {