summaryrefslogtreecommitdiffstats
path: root/src/H5Dprivate.h
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-11-11 22:00:09 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-11-11 22:00:09 (GMT)
commitcf61e58985ab4c8f2f382b0969cc057505a33f41 (patch)
treef4d45338b1f81eaee2135b11d7195fefafbb6de5 /src/H5Dprivate.h
parent02a2fc238c27eada6e4df8af14d363402d6bb44e (diff)
downloadhdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.zip
hdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.tar.gz
hdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.tar.bz2
[svn-r6072] Purpose:
Code Movement Description: Moved definition of the H5D_t data structure into the H5Dprivate.h header file. With the FPHDF5 stuff, we need access to this data structure. Platforms tested: Eirene...change small, so no need for all three tests.
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r--src/H5Dprivate.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h
index d4a9f91..7f2a0ce 100644
--- a/src/H5Dprivate.h
+++ b/src/H5Dprivate.h
@@ -141,7 +141,15 @@
#define H5D_XFER_HYPER_VECTOR_SIZE_SIZE sizeof(size_t)
#define H5D_XFER_HYPER_VECTOR_SIZE_DEF 1024
-typedef struct H5D_t H5D_t;
+/*
+ * A dataset is the following struct.
+ */
+typedef struct H5D_t {
+ H5G_entry_t ent; /* cached object header stuff */
+ H5T_t *type; /* datatype of this dataset */
+ hid_t dcpl_id; /* dataset creation property id */
+ H5O_layout_t layout; /* data layout */
+} H5D_t;
/* Functions defined in H5D.c */
H5_DLL herr_t H5D_init(void);