diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-10 17:54:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-10 17:54:19 (GMT) |
commit | b7f334adb4acec6ff0171b8dda6f9873d8c67bb5 (patch) | |
tree | 74e271bf28a0277206d4d438d9752fa50a6794a8 /src/H5Spublic.h | |
parent | f87dbef4ca00da7bb9b89faf3d982156878c600d (diff) | |
download | hdf5-b7f334adb4acec6ff0171b8dda6f9873d8c67bb5.zip hdf5-b7f334adb4acec6ff0171b8dda6f9873d8c67bb5.tar.gz hdf5-b7f334adb4acec6ff0171b8dda6f9873d8c67bb5.tar.bz2 |
[svn-r480] Fixed an ugly bug by teaching the recursive hyperslab I/O code how to resume
when a buffer gets full. Also removed the check for disallowing zero-dim
extents on unlimited dimension datasets, per user's request.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index 3a1b437..d3d75b6 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -57,6 +57,8 @@ hsize_t H5Sselect_npoints (hid_t spaceid); herr_t H5Sselect_hyperslab (hid_t spaceid, H5S_seloper_t op, const hssize_t *start, const hsize_t *_stride, const hsize_t *count, const hsize_t *_block); +herr_t H5Sselect_elements (hid_t spaceid, H5S_seloper_t op, size_t num_elemn, + const hssize_t *coord[]); #ifdef __cplusplus } |