diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-07-07 22:12:24 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-07-07 22:12:24 (GMT) |
commit | 3748f79ca2f867ecd82dd159822918ad99059320 (patch) | |
tree | 8e72a79fa8688f88b6defdcf226de1f8ae80e12f /src/H5Spublic.h | |
parent | 5ab92f6c59b909c51225ff886f9b7a24fdd1dcf6 (diff) | |
download | hdf5-3748f79ca2f867ecd82dd159822918ad99059320.zip hdf5-3748f79ca2f867ecd82dd159822918ad99059320.tar.gz hdf5-3748f79ca2f867ecd82dd159822918ad99059320.tar.bz2 |
[svn-r463] H5S.c:
Moved the source of H5S_extent_npoints before H5Sextent_npoints to
reduce a compiler complaint.
H5Shyper.c:
H5Sprivate.h:
H5Spublic.h:
H5Sselect.c:
Changed the parameter declarations of H5S_hyper_add
and H5Sselect_hyperslab as originally intended as const hsize *.
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index b7c0f01..b08b489 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -54,8 +54,9 @@ int H5Sget_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 H5Sselect_npoints (hid_t spaceid); -herr_t H5Sselect_hyperslab (hid_t spaceid, H5S_seloper_t op, hssize_t *start, - hssize_t *_stride, hssize_t *count, hssize_t *_block); +herr_t H5Sselect_hyperslab (hid_t spaceid, H5S_seloper_t op, + const hssize_t *start, const hsize_t *_stride, const hsize_t *count, + const hsize_t *_block); #ifdef __cplusplus } |