diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-03-11 21:03:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-03-11 21:03:30 (GMT) |
commit | fbef4e61ed699fa704ebc8c1729248c05d63e9ee (patch) | |
tree | 5f69260a3b20198587f3b9509c9c0201ddc90cb6 /src/H5Spublic.h | |
parent | af50eb6cbdb90e81d223cd6a0e60bdcf0c0ab3ae (diff) | |
download | hdf5-fbef4e61ed699fa704ebc8c1729248c05d63e9ee.zip hdf5-fbef4e61ed699fa704ebc8c1729248c05d63e9ee.tar.gz hdf5-fbef4e61ed699fa704ebc8c1729248c05d63e9ee.tar.bz2 |
[svn-r1135] Expanded API for reading lists blocks/points to allow for just a portion of
the block/point-list to be read at a time.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index 5e0fd28..afbb32b 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -84,8 +84,8 @@ __DLL__ herr_t H5Soffset_simple(hid_t space_id, const hssize_t *offset); __DLL__ htri_t H5Sselect_valid(hid_t spaceid); __DLL__ hssize_t H5Sget_select_hyper_nblocks(hid_t spaceid); __DLL__ hssize_t H5Sget_select_elem_npoints(hid_t spaceid); -__DLL__ herr_t H5Sget_select_hyper_blocklist(hid_t spaceid, hsize_t *buf); -__DLL__ herr_t H5Sget_select_elem_pointlist(hid_t spaceid, hsize_t *buf); +__DLL__ herr_t H5Sget_select_hyper_blocklist(hid_t spaceid, hsize_t startblock, hsize_t numblocks, hsize_t *buf); +__DLL__ herr_t H5Sget_select_elem_pointlist(hid_t spaceid, hsize_t startpoint, hsize_t numpoints, hsize_t *buf); __DLL__ herr_t H5Sget_select_bounds(hid_t spaceid, hsize_t *start, hsize_t *end); #ifdef __cplusplus |