summaryrefslogtreecommitdiffstats
path: root/src/H5Spublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-09-23 23:29:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-09-23 23:29:09 (GMT)
commit8af76560a0a0f05840e465a5a2871fe8010733ad (patch)
tree8df3ac0e5761a176f4f6e9c67416d6867a995d5a /src/H5Spublic.h
parent0db7facffee0e07e096ad96f323608d752d3790a (diff)
downloadhdf5-8af76560a0a0f05840e465a5a2871fe8010733ad.zip
hdf5-8af76560a0a0f05840e465a5a2871fe8010733ad.tar.gz
hdf5-8af76560a0a0f05840e465a5a2871fe8010733ad.tar.bz2
[svn-r717] Added code to support unioning hyperslabs with the H5S_SELECT_OR operation to
H5Sselect_hyperslab.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r--src/H5Spublic.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h
index 55b8ab1..5136544 100644
--- a/src/H5Spublic.h
+++ b/src/H5Spublic.h
@@ -34,8 +34,10 @@ typedef enum H5S_class_t {
/* Different ways of combining selections */
typedef enum H5S_seloper_t {
- H5S_NOOP = -1, /*error */
- H5S_SELECT_SET = 0 /* Select "set" operation */
+ 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_seloper_t;
#ifdef __cplusplus