summaryrefslogtreecommitdiffstats
path: root/hl/src/H5DOpublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-05-04 16:01:54 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-05-04 16:01:54 (GMT)
commit1fa0c5a4b57e51788d95a73b965fdbd5a6d2af5c (patch)
treed82f0a58d9975ddac6c1e90ca6a8df29b1ebe6a3 /hl/src/H5DOpublic.h
parentac035bf3679dc539c6b35534f310539210322779 (diff)
downloadhdf5-1fa0c5a4b57e51788d95a73b965fdbd5a6d2af5c.zip
hdf5-1fa0c5a4b57e51788d95a73b965fdbd5a6d2af5c.tar.gz
hdf5-1fa0c5a4b57e51788d95a73b965fdbd5a6d2af5c.tar.bz2
* Added H5DO compatibility functions.
* Changed the offset copy to use an array on the stack. * Yanked some unused #defines.
Diffstat (limited to 'hl/src/H5DOpublic.h')
-rw-r--r--hl/src/H5DOpublic.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/hl/src/H5DOpublic.h b/hl/src/H5DOpublic.h
index 7f83a7f..0271938 100644
--- a/hl/src/H5DOpublic.h
+++ b/hl/src/H5DOpublic.h
@@ -28,6 +28,12 @@ extern "C" {
H5_HLDLL herr_t H5DOappend(hid_t dset_id, hid_t dxpl_id, unsigned axis,
size_t extension, hid_t memtype, const void *buf);
+/* Compatibility wrappers for functionality moved to H5D */
+H5_HLDLL herr_t H5DOwrite_chunk(hid_t dset_id, hid_t dxpl_id, uint32_t filters,
+ const hsize_t *offset, size_t data_size, const void *buf);
+H5_HLDLL herr_t H5DOread_chunk(hid_t dset_id, hid_t dxpl_id, const hsize_t *offset,
+ uint32_t *filters /*out*/, void *buf /*out*/);
+
#ifdef __cplusplus
}
#endif