diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-09-04 13:01:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-09-04 13:01:59 (GMT) |
commit | 39fc82dfb4480858b0e80bbc549ef1b268a6e4c0 (patch) | |
tree | b273252bbcc1a8e9c36cecc17f6051653e1ee251 /src/H5Pprivate.h | |
parent | 5ada62f51b2308631ecaf5f0929ed885fb98eac9 (diff) | |
download | hdf5-39fc82dfb4480858b0e80bbc549ef1b268a6e4c0.zip hdf5-39fc82dfb4480858b0e80bbc549ef1b268a6e4c0.tar.gz hdf5-39fc82dfb4480858b0e80bbc549ef1b268a6e4c0.tar.bz2 |
[svn-r68] Added H5Pset_space routine to set the dimensions of a simple dataspace.
Also tweaked the data structures, and fixed a few bugs.
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index 062b2da..cfaf5f9 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -24,7 +24,11 @@ #include <H5private.h> #include <H5Cprivate.h> /*for hobjtype_t defn*/ -typedef struct { +/* Flags to indicate special dataspace features are active */ +#define H5P_VALID_MAX 0x01 +#define H5P_VALID_PERM 0x02 + +typedef struct H5P_sdim_t { uint32 rank; /* Number of dimensions */ uint32 dim_flags; /* Dimension flags */ uint32 *size; /* Dimension sizes */ |