summaryrefslogtreecommitdiffstats
path: root/src/H5Dprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-09-15 17:54:15 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-09-15 17:54:15 (GMT)
commit4dd2b367d5718689009ff67e2e665b7e61863331 (patch)
tree7f89717daf9e810a268dfb02ee46e250d851ce28 /src/H5Dprivate.h
parent9e1e3eadbe2644670371333b4602cd184a01703e (diff)
downloadhdf5-4dd2b367d5718689009ff67e2e665b7e61863331.zip
hdf5-4dd2b367d5718689009ff67e2e665b7e61863331.tar.gz
hdf5-4dd2b367d5718689009ff67e2e665b7e61863331.tar.bz2
[svn-r78] Checkpointing dataset code. Everything is currently working, except writing
a second dataset out to the file seems to loose the first one.
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r--src/H5Dprivate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h
index a5343d4..83a090f 100644
--- a/src/H5Dprivate.h
+++ b/src/H5Dprivate.h
@@ -32,8 +32,8 @@
typedef struct {
hatom_t fid; /* File Id for object */
haddr_t ohdr; /* Offset of the object header */
- H5G_entry_t *dir; /* directory entry for the directory the object is located in */
- H5G_entry_t *ent; /* directory entry for the object itself */
+ H5G_entry_t dir; /* directory entry for the directory the object is located in */
+ H5G_entry_t ent; /* directory entry for the object itself */
} H5D_oid_t;
typedef struct {
@@ -54,6 +54,7 @@ typedef struct {
/*-----------------_-- Local function prototypes ----------------------------*/
hatom_t H5D_create(hatom_t owner_id, hobjtype_t type, const char *name);
hatom_t H5D_access(hatom_t oid);
+hatom_t H5D_find_name(hatom_t owner_id, hobjtype_t type, const char *name);
herr_t H5D_flush(hatom_t oid);
herr_t H5D_release(hatom_t oid);