diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 17:42:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 17:42:48 (GMT) |
commit | 91fa38993526b45ad2e0da2f8a24548bac21d832 (patch) | |
tree | 5c1b8d0153faf4bfcec36280872acc8ef71d6eaf /src/H5Spublic.h | |
parent | bda4c6c94e77a5ff0aceb7117c90e371505ba233 (diff) | |
download | hdf5-91fa38993526b45ad2e0da2f8a24548bac21d832.zip hdf5-91fa38993526b45ad2e0da2f8a24548bac21d832.tar.gz hdf5-91fa38993526b45ad2e0da2f8a24548bac21d832.tar.bz2 |
[svn-r793] Changed return value for H5Sget_select_npoints to hssize_t to enable negative
return values.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index f89409e..3b6f636 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -61,7 +61,7 @@ int H5Sget_simple_extent_ndims (hid_t space_id); int H5Sget_simple_extent_dims (hid_t space_id, hsize_t dims[], hsize_t maxdims[]); hbool_t H5Sis_simple (hid_t space_id); herr_t H5Sset_space (hid_t space_id, int rank, const hsize_t *dims); -hsize_t H5Sget_select_npoints (hid_t spaceid); +hssize_t H5Sget_select_npoints (hid_t spaceid); herr_t H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op, const hssize_t start[], const hsize_t _stride[], const hsize_t count[], const hsize_t _block[]); |