diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-01-21 22:42:51 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-01-21 22:42:51 (GMT) |
commit | a919e43254cfece73ef3683540048399de055ef7 (patch) | |
tree | dbfc5c9577a83a64938ddeddc7803bb286f225d1 /src/H5Sprivate.h | |
parent | 83a7d959c022afd504fd7ce74408278dfcc9d81a (diff) | |
download | hdf5-a919e43254cfece73ef3683540048399de055ef7.zip hdf5-a919e43254cfece73ef3683540048399de055ef7.tar.gz hdf5-a919e43254cfece73ef3683540048399de055ef7.tar.bz2 |
[svn-r1944] Added "H5S_SELECT_PREPEND" and "H5S_SELECT_APPEND" operations to point
selections.
Also fixed bug which was not allowing the "start_point" parameter to
H5Sget_select_elem_pointlist to actually get used. It was always returning a
list of points selected which started with the beginning of the list of points.
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index a55de31..ac822be 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -345,7 +345,7 @@ __DLL__ herr_t H5S_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t op, void *operator_data); /* Point select functions */ -__DLL__ herr_t H5S_point_add(H5S_t *space, size_t num_elemn, +__DLL__ herr_t H5S_point_add(H5S_t *space, H5S_seloper_t op, size_t num_elem, const hssize_t **coord); __DLL__ herr_t H5S_point_release(H5S_t *space); __DLL__ hsize_t H5S_point_npoints(const H5S_t *space); |