diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-05-04 15:52:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-05-04 15:52:40 (GMT) |
commit | f1633a5fe2fa339657716fc557cc93be61fe766f (patch) | |
tree | c39cb73d752e703f300e8705189ff737fd72d0bc /java/src/jni/h5Imp.h | |
parent | 54316ab54241f1956b5494d6130eb2aeb4a3ace0 (diff) | |
download | hdf5-f1633a5fe2fa339657716fc557cc93be61fe766f.zip hdf5-f1633a5fe2fa339657716fc557cc93be61fe766f.tar.gz hdf5-f1633a5fe2fa339657716fc557cc93be61fe766f.tar.bz2 |
[svn-r29873] Java add missing APIs.
Adjust whitespace in H5.java for exception indentation.
Adjust whitespace in JNI for function signature formatting.
Diffstat (limited to 'java/src/jni/h5Imp.h')
-rw-r--r-- | java/src/jni/h5Imp.h | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/java/src/jni/h5Imp.h b/java/src/jni/h5Imp.h index 6600378..79ff3e4 100644 --- a/java/src/jni/h5Imp.h +++ b/java/src/jni/h5Imp.h @@ -28,7 +28,8 @@ extern "C" { * Method: H5open * Signature: ()I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5open +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5open (JNIEnv *, jclass); /* @@ -36,7 +37,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5open * Method: H5close * Signature: ()I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5close +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5close (JNIEnv *, jclass); /* @@ -44,7 +46,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5close * Method: H5dont_atexit * Signature: ()I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5dont_1atexit +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5dont_1atexit (JNIEnv *, jclass); /* @@ -52,7 +55,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5dont_1atexit * Method: H5get_libversion * Signature: ([I)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5get_1libversion +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5get_1libversion (JNIEnv *, jclass, jintArray); /* @@ -60,7 +64,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5get_1libversion * Method: H5check_version * Signature: (III)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5check_1version +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5check_1version (JNIEnv *, jclass, jint, jint, jint); /* @@ -69,7 +74,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5check_1version * Signature: ()I * */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5garbage_1collect +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5garbage_1collect (JNIEnv *, jclass); /* @@ -77,7 +83,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5garbage_1collect * Method: H5set_free_list_limits * Signature: (IIIIII)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5set_1free_1list_1limits +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5set_1free_1list_1limits (JNIEnv *, jclass, jint, jint, jint, jint, jint, jint ); /* @@ -85,7 +92,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5set_1free_1list_1limits * Method: H5is_library_threadsafe * Signature: ()Z */ -JNIEXPORT jboolean JNICALL Java_hdf_hdf5lib_H5_H5is_1library_1threadsafe +JNIEXPORT jboolean JNICALL +Java_hdf_hdf5lib_H5_H5is_1library_1threadsafe (JNIEnv *, jclass); #ifdef __cplusplus |