diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-06-18 16:12:52 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-06-18 16:12:52 (GMT) |
commit | d6f7fda058353212449fce012787d0d46d866f2f (patch) | |
tree | 6d01570382ac1a7eb9445c6898ad57aba916b78e /src/H5Spublic.h | |
parent | dd23059807cd092c50747479141be92a8fd80813 (diff) | |
download | hdf5-d6f7fda058353212449fce012787d0d46d866f2f.zip hdf5-d6f7fda058353212449fce012787d0d46d866f2f.tar.gz hdf5-d6f7fda058353212449fce012787d0d46d866f2f.tar.bz2 |
[svn-r431] H5Sget_dims:
Added maxdims agrument to H5Sget_dims. Also removed the check
of dims since H5Sget_dims can still return ndims even if both
*dims and *maxdims are NULLs.
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 a10852e..39b6502 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -43,7 +43,7 @@ hid_t H5Scopy (hid_t space_id); herr_t H5Sclose (hid_t space_id); hsize_t H5Sget_npoints (hid_t space_id); int H5Sget_ndims (hid_t space_id); -int H5Sget_dims (hid_t space_id, hsize_t dims[]); +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); herr_t H5Sset_hyperslab(hid_t sid, const hssize_t *start, const hsize_t *count, |