summaryrefslogtreecommitdiffstats
path: root/src/H5Hprivate.h
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
commit0f7fcaad25171bd5d4eb8f822d88b5770d9b235d (patch)
tree0e187af66ca6ec2036d56a882133008f46d78fb2 /src/H5Hprivate.h
parent8a4d8a5b0c7e473566ae9347ac228eaea0490875 (diff)
downloadhdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.zip
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.gz
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.bz2
[svn-r111] Changed hdf5_file_t to H5F_t, split data struct ito two halves, fixed
problems when opening the same file more than once.
Diffstat (limited to 'src/H5Hprivate.h')
-rw-r--r--src/H5Hprivate.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/H5Hprivate.h b/src/H5Hprivate.h
index 99e8e8f..1fa194b 100644
--- a/src/H5Hprivate.h
+++ b/src/H5Hprivate.h
@@ -45,15 +45,14 @@ typedef enum H5H_type_t {
/*
* Library prototypes...
*/
-haddr_t H5H_new (hdf5_file_t *f, H5H_type_t type, size_t size_hint);
-void *H5H_read (hdf5_file_t *f, haddr_t addr, off_t offset, size_t size,
- void *buf);
-const void *H5H_peek (hdf5_file_t *f, haddr_t addr, off_t offset);
-off_t H5H_insert (hdf5_file_t *f, haddr_t addr, size_t size, const void *buf);
-herr_t H5H_write (hdf5_file_t *f, haddr_t addr, off_t offset, size_t size,
+haddr_t H5H_new (H5F_t *f, H5H_type_t type, size_t size_hint);
+void *H5H_read (H5F_t *f, haddr_t addr, off_t offset, size_t size, void *buf);
+const void *H5H_peek (H5F_t *f, haddr_t addr, off_t offset);
+off_t H5H_insert (H5F_t *f, haddr_t addr, size_t size, const void *buf);
+herr_t H5H_write (H5F_t *f, haddr_t addr, off_t offset, size_t size,
const void *buf);
-herr_t H5H_remove (hdf5_file_t *f, haddr_t addr, off_t offset, size_t size);
-herr_t H5H_debug (hdf5_file_t *f, haddr_t addr, FILE *stream, intn indent,
+herr_t H5H_remove (H5F_t *f, haddr_t addr, off_t offset, size_t size);
+herr_t H5H_debug (H5F_t *f, haddr_t addr, FILE *stream, intn indent,
intn fwidth);
#endif