summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-04-30 14:52:07 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-04-30 14:52:07 (GMT)
commit09b1106e39edc1d2fa7c92c9c8de57d8c01e4e71 (patch)
tree9b65ffe80986b70b82006f00a3e6a5d847841806 /src/H5Dpublic.h
parentfa829e322ed44a67e2b3f2d6adf1306ad794859b (diff)
downloadhdf5-09b1106e39edc1d2fa7c92c9c8de57d8c01e4e71.zip
hdf5-09b1106e39edc1d2fa7c92c9c8de57d8c01e4e71.tar.gz
hdf5-09b1106e39edc1d2fa7c92c9c8de57d8c01e4e71.tar.bz2
First stage of moving H5DOread/write_chunk() to src/ and making
them H5D calls. * Moved H5DOread/write_chunk() to H5Dio.c and renamed to H5D*. * Moved the hl/test/test_dset_opt test to test/ and renamed to direct_chunk. * Moved the hl/test/dectris_hl_perf test to tools/test/perform and renamed to direct_write_perf. * Updated autotools and CMake files.
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index 790674a..be80cef 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -157,6 +157,10 @@ H5_DLL herr_t H5Dread(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id,
hid_t file_space_id, hid_t plist_id, void *buf/*out*/);
H5_DLL herr_t H5Dwrite(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id,
hid_t file_space_id, hid_t plist_id, const void *buf);
+H5_DLL herr_t H5Dwrite_chunk(hid_t dset_id, hid_t dxpl_id, uint32_t filters,
+ const hsize_t *offset, size_t data_size, const void *buf);
+H5_DLL herr_t H5Dread_chunk(hid_t dset_id, hid_t dxpl_id,
+ const hsize_t *offset, uint32_t *filters, void *buf);
H5_DLL herr_t H5Diterate(void *buf, hid_t type_id, hid_t space_id,
H5D_operator_t op, void *operator_data);
H5_DLL herr_t H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, void *buf);