summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-06-06 22:39:49 +0000
committerMark Wielaard <mark@klomp.org>2006-06-06 22:39:49 +0000
commit232e9ac2dd660a179206241dae18a9b9bee7fa44 (patch)
tree01789d12e380b2f1661ab4f08bf28b1e69ea725c /include
parent7eeb2c6d95381367f88ff85b4e9b25729133d873 (diff)
downloadclasspath-232e9ac2dd660a179206241dae18a9b9bee7fa44.tar.gz
* include/jni.h (JDK1_1InitArgs): Mark pointer-to-function types
with JNICALL.
Diffstat (limited to 'include')
-rw-r--r--include/jni.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/jni.h b/include/jni.h
index 634f5e000..3a0d9c31e 100644
--- a/include/jni.h
+++ b/include/jni.h
@@ -1604,9 +1604,9 @@ typedef struct JDK1_1InitArgs
jint verifyMode;
const char *classpath;
- jint (*vfprintf) (FILE *file, const char *fmt, va_list args);
- void (*exit) (jint value);
- void (*abort) ();
+ jint (JNICALL *vfprintf) (FILE *file, const char *fmt, va_list args);
+ void (JNICALL *exit) (jint value);
+ void (JNICALL *abort) (void);
jint enableClassGC;
jint enableVerboseGC;