diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-02-25 17:05:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-02-25 17:05:16 (GMT) |
commit | 2dae07556928721290360fb2393bb928e2367527 (patch) | |
tree | 8da7868532c7eb09f9869fb8f03c0ba95662a93a /src/H5Spublic.h | |
parent | 48d9c30923a5d298670cf1f8e930c9a9624f80b9 (diff) | |
download | hdf5-2dae07556928721290360fb2393bb928e2367527.zip hdf5-2dae07556928721290360fb2393bb928e2367527.tar.gz hdf5-2dae07556928721290360fb2393bb928e2367527.tar.bz2 |
[svn-r26300] Description:
Add H5Sis_regular_hyperslab() and H5Sget_regular_hyperslab() API routines,
along with tests.
Tested on:
Mac OSX/64 10.10.2 (amazon) w/serial
(h5committest forthcoming)
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 0a39ce1..37d3866 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -137,6 +137,9 @@ H5_DLL herr_t H5Sselect_all(hid_t spaceid); H5_DLL herr_t H5Sselect_none(hid_t spaceid); H5_DLL herr_t H5Soffset_simple(hid_t space_id, const hssize_t *offset); H5_DLL htri_t H5Sselect_valid(hid_t spaceid); +H5_DLL htri_t H5Sis_regular_hyperslab(hid_t spaceid); +H5_DLL htri_t H5Sget_regular_hyperslab(hid_t spaceid, hsize_t start[], + hsize_t stride[], hsize_t count[], hsize_t block[]); H5_DLL hssize_t H5Sget_select_hyper_nblocks(hid_t spaceid); H5_DLL hssize_t H5Sget_select_elem_npoints(hid_t spaceid); H5_DLL herr_t H5Sget_select_hyper_blocklist(hid_t spaceid, hsize_t startblock, |