diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-07-30 20:34:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@koziol.gov> | 2019-07-30 20:34:53 (GMT) |
commit | 605889fde8a92ed902bb4c5207912d1d687f7a99 (patch) | |
tree | 40aa43620205049ea3c3473ee32a588bf42539ec /src/H5Spublic.h | |
parent | d3fdcd8a680ad0f8b21304b35e8564b774a88ef0 (diff) | |
download | hdf5-605889fde8a92ed902bb4c5207912d1d687f7a99.zip hdf5-605889fde8a92ed902bb4c5207912d1d687f7a99.tar.gz hdf5-605889fde8a92ed902bb4c5207912d1d687f7a99.tar.bz2 |
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.h | 3 |
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); |