diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-18 21:55:42 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-18 21:55:42 +0000 |
| commit | a6d713d5af7ccd092c825fcc485af74cd00e2beb (patch) | |
| tree | e0acbf02187974a24c0374b57a4cb4a709ce82be /libjava | |
| parent | acf7a6bc5621e9fd8ce680d398ca2c632a929cbb (diff) | |
| download | ppe42-gcc-a6d713d5af7ccd092c825fcc485af74cd00e2beb.tar.gz ppe42-gcc-a6d713d5af7ccd092c825fcc485af74cd00e2beb.zip | |
* include/jni.h (JNIIMPORT): New macro.
(JNIEXPORT): Likewise.
(JNICALL): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51009 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
| -rw-r--r-- | libjava/ChangeLog | 11 | ||||
| -rw-r--r-- | libjava/include/jni.h | 6 |
2 files changed, 17 insertions, 0 deletions
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 <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. 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" { |

