diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-29 19:26:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-29 19:26:32 (GMT) |
commit | 39a94b2f538e6b4d1b13362e022141ba8cb599c0 (patch) | |
tree | 93c81660e0b8e423868bed0ca907bfe046b4c878 /src/H5Pprivate.h | |
parent | c48f8b7590ed6bc334a6d62ab651cda8124ba90f (diff) | |
download | hdf5-39a94b2f538e6b4d1b13362e022141ba8cb599c0.zip hdf5-39a94b2f538e6b4d1b13362e022141ba8cb599c0.tar.gz hdf5-39a94b2f538e6b4d1b13362e022141ba8cb599c0.tar.bz2 |
[svn-r53] Added datatype and dimensionality messages to dataset header, cleaned up more
code, etc.
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index 455ad4b..062b2da 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -24,10 +24,20 @@ #include <H5private.h> #include <H5Cprivate.h> /*for hobjtype_t defn*/ +typedef struct { + uint32 rank; /* Number of dimensions */ + uint32 dim_flags; /* Dimension flags */ + uint32 *size; /* Dimension sizes */ + uint32 *max; /* Maximum dimension sizes */ + uint32 *perm; /* Dimension permutations */ +} H5P_sdim_t; + #define H5P_RESERVED_ATOMS 1 /* Private functions */ hatom_t H5P_create(hatom_t owner_id, hobjtype_t type, const char *name); +uint32 H5P_get_lrank(H5P_sdim_t *sdim); +hbool_t H5P_is_simple(H5P_sdim_t *sdim); herr_t H5P_release(hatom_t oid); #endif |