summaryrefslogtreecommitdiffstats
path: root/src/H5Dpkg.h
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2015-03-09 21:59:50 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2015-03-09 21:59:50 (GMT)
commitbfc69905acab1727260af74efa0b119a119ddc6b (patch)
tree800a5daa5c19598cf74d9be0b637d690a3bef7af /src/H5Dpkg.h
parent9cdf806eec4e66802fb0a544ba19f46a532154bb (diff)
downloadhdf5-bfc69905acab1727260af74efa0b119a119ddc6b.zip
hdf5-bfc69905acab1727260af74efa0b119a119ddc6b.tar.gz
hdf5-bfc69905acab1727260af74efa0b119a119ddc6b.tar.bz2
[svn-r26411] Add support for I/O in very simple cases (virtual mapping and file space are
both H5S_ALL). Note make check fails in h5dump test (unrelated to this checkin). Tested: ummon
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r--src/H5Dpkg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h
index 82c4d2f..d448406 100644
--- a/src/H5Dpkg.h
+++ b/src/H5Dpkg.h
@@ -536,6 +536,8 @@ H5_DLL H5D_t *H5D__create(H5F_t *file, hid_t type_id, const H5S_t *space,
H5_DLL H5D_t *H5D__create_named(const H5G_loc_t *loc, const char *name,
hid_t type_id, const H5S_t *space, hid_t lcpl_id, hid_t dcpl_id,
hid_t dapl_id, hid_t dxpl_id);
+H5_DLL H5D_t *H5D__open_name(const H5G_loc_t *loc, const char *name,
+ hid_t dapl_id, hid_t dxpl_id);
H5_DLL herr_t H5D__get_space_status(H5D_t *dset, H5D_space_status_t *allocation,
hid_t dxpl_id);
H5_DLL herr_t H5D__alloc_storage(const H5D_t *dset, hid_t dxpl_id, H5D_time_alloc_t time_alloc,
@@ -558,6 +560,9 @@ H5_DLL herr_t H5D__flush_real(H5D_t *dataset, hid_t dxpl_id);
H5_DLL herr_t H5D__read(H5D_t *dataset, hid_t mem_type_id,
const H5S_t *mem_space, const H5S_t *file_space, hid_t dset_xfer_plist,
void *buf/*out*/);
+H5_DLL herr_t H5D__write(H5D_t *dataset, hid_t mem_type_id,
+ const H5S_t *mem_space, const H5S_t *file_space, hid_t dset_xfer_plist,
+ const void *buf);
/* Functions that perform direct serial I/O operations */
H5_DLL herr_t H5D__select_read(const H5D_io_info_t *io_info,