diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-01 21:23:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-01 21:23:21 (GMT) |
commit | 12ebf40c4e8ce421b103a7443428d13c7f2f23b6 (patch) | |
tree | 1b141a81528488d7d3598eebe274f4d1d56c99f7 /src/H5Pproto.h | |
parent | 332b6fd6765b28bfd1083af6e366ccc621feea1e (diff) | |
download | hdf5-12ebf40c4e8ce421b103a7443428d13c7f2f23b6.zip hdf5-12ebf40c4e8ce421b103a7443428d13c7f2f23b6.tar.gz hdf5-12ebf40c4e8ce421b103a7443428d13c7f2f23b6.tar.bz2 |
[svn-r8] Hooked the dimensionality objects into the "meta-object" interface.
Diffstat (limited to 'src/H5Pproto.h')
-rw-r--r-- | src/H5Pproto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Pproto.h b/src/H5Pproto.h index 218949a..b0337a0 100644 --- a/src/H5Pproto.h +++ b/src/H5Pproto.h @@ -22,6 +22,10 @@ /* Define atomic datatypes */ #define H5P_SCALAR MAKE_ATOM(H5_DATASPACE,0) +typedef struct { + uintn rank; + uint32 *dims; + } H5P_dim_t; #if defined c_plusplus || defined __cplusplus extern "C" @@ -29,7 +33,9 @@ extern "C" #endif /* c_plusplus || __cplusplus */ /* Functions in H5P.c */ +hatom_t H5P_create(hatom_t owner_id, hobjtype_t type, const char *name); uintn H5Pnelem(hatom_t dim_id); +herr_t H5P_release(hatom_t oid); #if defined c_plusplus || defined __cplusplus } |