summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-08-15 14:36:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-08-15 14:36:27 (GMT)
commit876badec3f143c1ca90f240c02e09e54b1b20608 (patch)
tree482b5859f061f4a1bbe8e6d52989e2ee34a9d16f /src/H5Fprivate.h
parent2339599b7c98ac329e7baa28b6d657e98771d768 (diff)
downloadhdf5-876badec3f143c1ca90f240c02e09e54b1b20608.zip
hdf5-876badec3f143c1ca90f240c02e09e54b1b20608.tar.gz
hdf5-876badec3f143c1ca90f240c02e09e54b1b20608.tar.bz2
[svn-r30] Intermediate checkin of (non-working) dataset code to allow for source code
rearrangement.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index 8654920..eebb55d 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -27,7 +27,7 @@
/*** packages! ***/
/*****************************************/
-/* Maximum size of boot-block */
+/* Maximum size of boot-block buffer */
#define H5F_BOOTBLOCK_SIZE 1024
@@ -51,6 +51,7 @@ typedef struct {
file_access_temp_t file_access_parms; /* File-access template parameters */
#endif /* LATER */
struct H5G_entry_t *root_sym; /* Extra for the root symbol in the file */
+ H5F_root_symtype_t root_type; /* What kind of symbol is the root? */
} hdf5_file_t;
@@ -96,6 +97,7 @@ typedef struct {
void H5F_encode_length_unusual(const hdf5_file_t *f, uint8 **p, uint8 *l);
void H5F_encode_offset_unusual(const hdf5_file_t *f, uint8 **p, uint8 *o);
intn H5F_compare_filename(const VOIDP obj, const VOIDP key);
+H5F_root_symtype_t H5F_root_type(hatom_t fid);
herr_t H5F_block_read (hdf5_file_t *f, haddr_t addr, size_t size, void *buf);
herr_t H5F_block_write (hdf5_file_t *f, haddr_t addr, size_t size, void *buf);
herr_t H5F_debug (hdf5_file_t *f, haddr_t addr, FILE *stream, intn indent,