CVSROOT: /cvsroot/classpath Module name: classpath Changes by: Mark Wielaard <mark> 06/06/06 22:39:50
Modified files: . : ChangeLog include : jni.h Log message: * include/jni.h (JDK1_1InitArgs): Mark pointer-to-function types with JNICALL. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7689&r2=1.7690 http://cvs.savannah.gnu.org/viewcvs/classpath/include/jni.h?cvsroot=classpath&r1=1.7&r2=1.8 Patches: Index: ChangeLog =================================================================== RCS file: /cvsroot/classpath/classpath/ChangeLog,v retrieving revision 1.7689 retrieving revision 1.7690 diff -u -b -r1.7689 -r1.7690 --- ChangeLog 6 Jun 2006 20:45:22 -0000 1.7689 +++ ChangeLog 6 Jun 2006 22:39:49 -0000 1.7690 @@ -1,3 +1,8 @@ +2006-06-06 Mark Wielaard <[EMAIL PROTECTED]> + + * include/jni.h (JDK1_1InitArgs): Mark pointer-to-function types + with JNICALL. + 2006-06-06 David Gilbert <[EMAIL PROTECTED]> * javax/swing/plaf/metal/MetalSplitPaneDivider.java Index: include/jni.h =================================================================== RCS file: /cvsroot/classpath/classpath/include/jni.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- include/jni.h 6 Jun 2006 19:11:16 -0000 1.7 +++ include/jni.h 6 Jun 2006 22:39:50 -0000 1.8 @@ -1604,9 +1604,9 @@ 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;