From 9d5e46be343e18f9798d68c52884a02c19cbc8e0 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 18 Mar 2002 21:55:42 +0000 Subject: [PATCH] jni.h (JNIIMPORT): New macro. * include/jni.h (JNIIMPORT): New macro. (JNIEXPORT): Likewise. (JNICALL): Likewise. From-SVN: r51009 --- libjava/ChangeLog | 11 +++++++++++ libjava/include/jni.h | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 352e2d12015..78785861a43 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,14 @@ +2002-03-18 Tom Tromey + + * include/jni.h (JNIIMPORT): New macro. + (JNIEXPORT): Likewise. + (JNICALL): Likewise. + +2002-03-18 Rainer Orth + + * configure.host (i?86-*): Use -fuse-divide-subroutine on Solaris + systems. + 2002-03-18 Andrew Haley * include/i386-signal.h (old_i386_kernel_sigaction): New. diff --git a/libjava/include/jni.h b/libjava/include/jni.h index d41a6a2d234..5510079b8a1 100644 --- a/libjava/include/jni.h +++ b/libjava/include/jni.h @@ -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" { -- 2.30.2