diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
commit | dd0fbd5b0060ebc7703da8eaab747f7a3025be2a (patch) | |
tree | 2adb270f853a320980403b02a5100d6c84b81290 /src/H5Dprivate.h | |
parent | e251f45b8741c7e7bf2dbd4d76a76d67dbfc6da1 (diff) | |
download | hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.zip hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.gz hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.bz2 |
[svn-r14] Preliminary checkin of dataset code, to allow the interface & code to be shared.
Everything except the H5Dwrite should be working (or have sections of code
commented about features to implement).
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index 1def360..26bab4d 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -19,6 +19,17 @@ #ifndef H5DPRIVATE_H #define H5DPRIVATE_H +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 */ + haddr_t header; /* offset of the object header for this dataset */ + haddr_t data; /* offset of the data in the file */ + } H5D_dataset_t; + #include "H5Dproto.h" #define H5D_RESERVED_ATOMS 0 |