jni.h (struct JNINativeInterface): Returns jsize, not jint.
* include/jni.h (struct JNINativeInterface) [GetStringLength]: Returns jsize, not jint. From-SVN: r46569
This commit is contained in:
parent
f4f17e7dc5
commit
2bd989ca96
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-10-27 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* include/jni.h (struct JNINativeInterface) [GetStringLength]:
|
||||
Returns jsize, not jint.
|
||||
|
||||
2001-10-26 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/util/zip/Adler32.java: Use correct class name. (Re-merge
|
||||
|
|
|
@ -436,7 +436,7 @@ struct JNINativeInterface
|
|||
jfieldID, jdouble);
|
||||
|
||||
jstring (*NewString) (JNIEnv *, const jchar *, jsize);
|
||||
jint (*GetStringLength) (JNIEnv *, jstring);
|
||||
jsize (*GetStringLength) (JNIEnv *, jstring);
|
||||
const jchar * (*GetStringChars) (JNIEnv *, jstring, jboolean *);
|
||||
void (*ReleaseStringChars) (JNIEnv *, jstring, const jchar *);
|
||||
jstring (*NewStringUTF) (JNIEnv *, const char *);
|
||||
|
|
Loading…
Add table
Reference in a new issue