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/H5Dprivate.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/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index 43558e8..907395d 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -23,15 +23,15 @@ /* Private headers needed by this file */ #include <H5private.h> #include <H5Cprivate.h> /* for the hobjtype_t type */ - +#include <H5Tprivate.h> /* for the h5_datatype_t type */ +#include <H5Pprivate.h> /* for the H5P_sdim_t type */ typedef struct { hatom_t file; /* ID of the file-store of this object */ - hatom_t parent; /* ID of the parent of this object (objects in the root-directory should have the file ID here, otherwise the directory ID is here) */ char *name; /* Name of dataset */ hbool_t modified; /* Whether the dataset has been modified from version on disk */ - hatom_t type; /* ID of Datatype of the dataset */ - hatom_t dim; /* ID of Dimensionality of the dataset */ + h5_datatype_t *type; /* Pointer to datatype of the dataset */ + H5P_sdim_t *dim; /* Pointer to dimensionality of the dataset */ haddr_t header; /* offset of the object header for this dataset */ haddr_t data; /* offset of the data in the file */ } H5D_dataset_t; |