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/h5util.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/h5util.h')
-rw-r--r-- | java/src/jni/h5util.h | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/java/src/jni/h5util.h b/java/src/jni/h5util.h index fcf343d..ab8da98 100644 --- a/java/src/jni/h5util.h +++ b/java/src/jni/h5util.h @@ -52,7 +52,8 @@ extern int h5str_dump_region_points_data(h5str_t *str, hid_t region, hid_t r * Method: H5AwriteVL * Signature: (JJ[Ljava/lang/String;)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5AwriteVL +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5AwriteVL (JNIEnv *, jclass, jlong, jlong, jobjectArray); /* @@ -60,7 +61,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5AwriteVL * Method: H5AreadVL * Signature: (JJ[Ljava/lang/String;)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5AreadVL +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5AreadVL (JNIEnv *, jclass, jlong, jlong, jobjectArray); /* @@ -69,7 +71,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5AreadVL * Method: H5Acopy * Signature: (JJ)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Acopy +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5Acopy (JNIEnv *, jclass, jlong, jlong); /* @@ -78,7 +81,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Acopy * Method: H5Dcopy * Signature: (JJ)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Dcopy +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5Dcopy (JNIEnv*, jclass, jlong, jlong); /* @@ -86,7 +90,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Dcopy * Method: H5Gget_obj_info_full * Signature: (JLjava/lang/String;[Ljava/lang/String;[I[I[J[JIII)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1full +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1full (JNIEnv*, jclass, jlong, jstring, jobjectArray, jintArray, jintArray, jlongArray, jlongArray, jint, jint, jint); /* @@ -94,7 +99,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1full * Method: H5Gget_obj_info_max * Signature: (J[Ljava/lang/String;[I[I[JJI)I */ -JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1max +JNIEXPORT jint JNICALL +Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1max (JNIEnv*, jclass, jlong, jobjectArray, jintArray, jintArray, jlongArray, jlong, jint); /* @@ -102,7 +108,8 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Gget_1obj_1info_1max * Method: H5export_dataset * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V */ -JNIEXPORT void JNICALL Java_hdf_hdf5lib_H5_H5export_1dataset +JNIEXPORT void JNICALL +Java_hdf_hdf5lib_H5_H5export_1dataset (JNIEnv*, jclass, jstring, jstring, jstring, jint); #endif /* H5UTIL_H__ */ |