summaryrefslogtreecommitdiffstats
path: root/src/H5Spublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2019-08-04 23:38:36 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2019-08-04 23:38:36 (GMT)
commit5fe1216a4e6af8feef0551f7bece8a0e193310a9 (patch)
tree357b147c218af566ce2cf8c6ef9c210d98b7829f /src/H5Spublic.h
parentab1ce69900caa0b249e07db8992e66f95b0af1dc (diff)
parent905d40aa6f6eb603c5507e7967130760e3a2e43c (diff)
downloadhdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.zip
hdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.tar.gz
hdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.tar.bz2
Merge pull request #1819 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop to develop
* commit '905d40aa6f6eb603c5507e7967130760e3a2e43c': Fix return type for H5Sselect_intersect_block(). Updated H5TRACE macro. Add H5Sselect_shape_same and H5Sselect_intersect_block API routines, along with tests and minor cleanups and refactorings.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r--src/H5Spublic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h
index 23e6846..9e76b4b 100644
--- a/src/H5Spublic.h
+++ b/src/H5Spublic.h
@@ -145,6 +145,9 @@ H5_DLL herr_t H5Sselect_copy(hid_t dst_id, hid_t src_id);
H5_DLL htri_t H5Sselect_valid(hid_t spaceid);
H5_DLL herr_t H5Sget_select_bounds(hid_t spaceid, hsize_t start[],
hsize_t end[]);
+H5_DLL htri_t H5Sselect_shape_same(hid_t space1_id, hid_t space2_id);
+H5_DLL htri_t H5Sselect_intersect_block(hid_t space_id, const hsize_t *start,
+ const hsize_t *end);
H5_DLL herr_t H5Soffset_simple(hid_t space_id, const hssize_t *offset);
H5_DLL herr_t H5Sselect_all(hid_t spaceid);
H5_DLL herr_t H5Sselect_none(hid_t spaceid);