diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-28 17:14:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-28 17:14:35 (GMT) |
commit | a39e0ef324c57105c09e84f4aee878595a320a41 (patch) | |
tree | 401eaf34c9864657784d486b79c2cae1da1b0614 /src/H5Gprivate.h | |
parent | e8d5c25431dd926d04f35cc06ab2027db86869cf (diff) | |
download | hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.zip hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.tar.gz hdf5-a39e0ef324c57105c09e84f4aee878595a320a41.tar.bz2 |
[svn-r47] Finished flashing out the H5M* functions calls. Cleaned up non-compiling
source. Finished adding in remainder of H5Osdtyp.c functions.
Diffstat (limited to 'src/H5Gprivate.h')
-rw-r--r-- | src/H5Gprivate.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/H5Gprivate.h b/src/H5Gprivate.h index e0794b0..945291e 100644 --- a/src/H5Gprivate.h +++ b/src/H5Gprivate.h @@ -35,6 +35,7 @@ 4 + /*entry type */ \ 24) /*scratch pad space */ +#define H5G_DEFAULT_ROOT_SIZE 32 /* * Various types of object header information can be cached in a symbol @@ -61,7 +62,11 @@ typedef struct H5G_entry_t { union { struct { - uint32 nt; /*number type */ + struct { + uint8 length; + uint8 arch; + uint16 type; + }nt ; /*number type */ uint32 ndim; /*number of dimensions */ uint32 dim[4]; /*dimension sizes */ } sdata; @@ -143,6 +148,7 @@ herr_t H5G_insert (hdf5_file_t *f, H5G_entry_t *cwd, H5G_entry_t *dir_ent, const char *name, H5G_entry_t *ent); herr_t H5G_modify (hdf5_file_t *f, H5G_entry_t *cwd, H5G_entry_t *dir_ent, const char *name, H5G_entry_t *ent); +herr_t H5G_set_root (hdf5_file_t *f, const char *name, H5G_entry_t *ent); /* functions that understand symbol tables */ haddr_t H5G_stab_new (hdf5_file_t *f, H5G_entry_t *self, size_t init); |