summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-02-07 16:21:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-02-07 16:21:24 (GMT)
commit9d98d34210f52b97d7bef4e1eec3bd0c6d134b30 (patch)
treee72ac96ae05bc82427aecf27bf3fdb37dbc496cb /src/H5Spkg.h
parent1f3762ff88f9f9b0b7ce4ae177aee237830fde45 (diff)
downloadhdf5-9d98d34210f52b97d7bef4e1eec3bd0c6d134b30.zip
hdf5-9d98d34210f52b97d7bef4e1eec3bd0c6d134b30.tar.gz
hdf5-9d98d34210f52b97d7bef4e1eec3bd0c6d134b30.tar.bz2
[svn-r4914] Purpose:
Bug fix & feature add Description: Added new API function H5Sget_select_type to determine type of selection in a dataspace. Return values are defined by the H5S_sel_type enumerated type in H5Spublic.h Also, hyperslab operations involving a "all" or "none" selection are not generating the correct resulting selections. Solution: Added more code to make hyperslab operations against an "all" or "none" selection generate the correct results. Platforms tested: FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index 7c4d53f..9e44930 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -176,6 +176,7 @@ __DLL__ herr_t H5S_hyper_select_iterate(void *buf, hid_t type_id, H5S_t *space,
H5D_operator_t op, void *operator_data);
/* "None" selection functions */
+__DLL__ herr_t H5S_select_none(H5S_t *space);
__DLL__ herr_t H5S_none_select_serialize(const H5S_t *space, uint8_t *buf);
__DLL__ herr_t H5S_none_select_deserialize(H5S_t *space, const uint8_t *buf);
__DLL__ herr_t H5S_none_select_iterate(void *buf, hid_t type_id, H5S_t *space,