summaryrefslogtreecommitdiffstats
path: root/src/H5Spublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-01-21 22:42:51 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-01-21 22:42:51 (GMT)
commita919e43254cfece73ef3683540048399de055ef7 (patch)
treedbfc5c9577a83a64938ddeddc7803bb286f225d1 /src/H5Spublic.h
parent83a7d959c022afd504fd7ce74408278dfcc9d81a (diff)
downloadhdf5-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/H5Spublic.h')
-rw-r--r--src/H5Spublic.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h
index afbb32b..3f57139 100644
--- a/src/H5Spublic.h
+++ b/src/H5Spublic.h
@@ -39,12 +39,12 @@ typedef enum H5S_class_t {
typedef enum H5S_seloper_t {
H5S_SELECT_NOOP = -1, /* error */
H5S_SELECT_SET = 0, /* Select "set" operation */
- H5S_SELECT_OR, /* Binary "or" operation (add new selection
- * to existing selection)
- */
- H5S_SELECT_INVALID /* Invalid upper bound on selection
- * operations
- */
+ H5S_SELECT_OR, /* Binary "or" operation for hyperslabs
+ * (add new selection to existing selection)
+ */
+ H5S_SELECT_APPEND, /* Append elements to end of point selection */
+ H5S_SELECT_PREPEND, /* Prepend elements to beginning of point selection */
+ H5S_SELECT_INVALID /* Invalid upper bound on selection operations */
} H5S_seloper_t;
#ifdef __cplusplus