diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-03-10 23:50:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-03-10 23:50:03 (GMT) |
commit | ae782bd7ac0d7f3342d4317cbcd487d4bfefc206 (patch) | |
tree | 43c7965a2a9a3014f8b27915e0a5685919907dd2 /src/H5Spublic.h | |
parent | 354a6dcc0120bc857a22736fb0eb3d7cdda11525 (diff) | |
download | hdf5-ae782bd7ac0d7f3342d4317cbcd487d4bfefc206.zip hdf5-ae782bd7ac0d7f3342d4317cbcd487d4bfefc206.tar.gz hdf5-ae782bd7ac0d7f3342d4317cbcd487d4bfefc206.tar.bz2 |
[svn-r1132] Dataset region references are now finished and working correctly. Also, there
are five new API functions for querying selections:
H5Sget_select_hyper_nblocks - retrieves the number of hyperslab blocks
in current hyperslab selection for a
dataspace
H5Sget_select_elem_npoints - retrieves the number of element points
in current element selection for a
dataspace
H5Sget_select_hyper_blocklist - retrieves a list of the hyperslab blocks
in current hyperslab selection for a
dataspace
H5Sget_select_elem_pointlist - retrieves a list of the element points
in current element selection for a
dataspace
H5Sget_select_bounds - retrieves a n-dimensional bounding box
containing current selection.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index 14ab189..5e0fd28 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -82,6 +82,11 @@ __DLL__ herr_t H5Sselect_all(hid_t spaceid); __DLL__ herr_t H5Sselect_none(hid_t spaceid); __DLL__ herr_t H5Soffset_simple(hid_t space_id, const hssize_t *offset); __DLL__ htri_t H5Sselect_valid(hid_t spaceid); +__DLL__ hssize_t H5Sget_select_hyper_nblocks(hid_t spaceid); +__DLL__ hssize_t H5Sget_select_elem_npoints(hid_t spaceid); +__DLL__ herr_t H5Sget_select_hyper_blocklist(hid_t spaceid, hsize_t *buf); +__DLL__ herr_t H5Sget_select_elem_pointlist(hid_t spaceid, hsize_t *buf); +__DLL__ herr_t H5Sget_select_bounds(hid_t spaceid, hsize_t *start, hsize_t *end); #ifdef __cplusplus } |