diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-30 23:32:28 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-30 23:32:28 (GMT) |
commit | 374e5ae39b6f05469c1bcbdcaf0a473f1dde1385 (patch) | |
tree | 3284232ef8b21758da14fe63347b903d3883c3c4 /src/H5Ppublic.h | |
parent | d9329a23aab4d941956ac421b11eb009a2deb32b (diff) | |
download | hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.zip hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.tar.gz hdf5-374e5ae39b6f05469c1bcbdcaf0a473f1dde1385.tar.bz2 |
[svn-r209] Changes since 19980130
----------------------
./INSTALL
Added instructions for which C flags to set for debugging.
./src/H5C.c
./src/H5Cpublic.h
H5Cset_chunk() takes const pointer.
./src/H5D.c
./src/H5Dprivate.h
./src/H5Dpublic.h
Added H5Dextend() to extend the dimensions of a dataset.
./src/H5Osdspace.c
./src/H5P.c
./src/H5Pprivate.h
./src/H5Ppublic.h
./test/cmpd_dset.c
./test/dsets.c
./test/th5p.c
Added the optional `maxdims' argument to H5Pcreate_simple()
and defined constant H5P_UNLIMITED which can appear in the
maxdims. Added `const' to arguments.
Implemented H5Pcopy()
Removed the unused file argument from H5P_modify.
Added H5P_extend().
Removed the `flags' field from simple data types and we
determine if the `max' or `perm' arrays are valid by looking
at the pointer. Cleaned up the H5O_sdspace_debug output.
./src/H5T.c
Fixed a printf format.
./MANIFEST
./test/Makefile.in
./test/extend.c [NEW]
Added a test for multi-dimensional unlimited dimensions.
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 26e70e6..72f3c55 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -22,6 +22,7 @@ /* Define atomic datatypes */ #define H5P_ALL (-2) +#define H5P_UNLIMITED 0 /* Different types of dataspaces */ typedef enum H5P_class_t { @@ -36,7 +37,8 @@ extern "C" { #endif /* Functions in H5P.c */ -hid_t H5Pcreate_simple (int rank, size_t dims[]); +hid_t H5Pcreate_simple (int rank, const size_t dims[], const size_t maxdims[]); +hid_t H5Pcopy (hid_t space_id); herr_t H5Pclose (hid_t space_id); size_t H5Pget_npoints (hid_t space_id); int H5Pget_ndims (hid_t space_id); |