diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-20 19:25:58 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-20 19:25:58 (GMT) |
commit | fc0bc212bb6e12d4623f270bee3cf87e4dacc876 (patch) | |
tree | 8d969df6e0c650d0bafe649a1729a653ee402804 /src/H5Spkg.h | |
parent | 8c076f692190428fb123ae2418737db31af9343d (diff) | |
download | hdf5-fc0bc212bb6e12d4623f270bee3cf87e4dacc876.zip hdf5-fc0bc212bb6e12d4623f270bee3cf87e4dacc876.tar.gz hdf5-fc0bc212bb6e12d4623f270bee3cf87e4dacc876.tar.bz2 |
[svn-r4561] Purpose:
Bug fix
Description:
H5S_select_elements is not actually putting the new point on the list of
points selected when there are no points currently selected and the
'append' operation is chosen.
Solution:
Add new point to list correctly.
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index bc6f66e..cf6001b 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -150,6 +150,8 @@ __DLL__ herr_t H5S_point_select_serialize(const H5S_t *space, uint8_t *buf); __DLL__ herr_t H5S_point_select_deserialize(H5S_t *space, const uint8_t *buf); __DLL__ herr_t H5S_point_bounds(H5S_t *space, hsize_t *start, hsize_t *end); __DLL__ htri_t H5S_point_select_contiguous(const H5S_t *space); +__DLL__ herr_t H5S_select_elements (H5S_t *space, H5S_seloper_t op, + size_t num_elem, const hssize_t **coord); __DLL__ herr_t H5S_point_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t op, void *operator_data); |