diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-04-14 04:30:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-04-14 04:30:32 (GMT) |
commit | cfd1db1786ef580951efe1a6ff8e301b30484573 (patch) | |
tree | 8f15d2cad3c607e63231e7da6c2fa3f40510fd9e /src/H5Bprivate.h | |
parent | c54ea2b9783c89554ab84cd48b5a6c689afe5e33 (diff) | |
download | hdf5-cfd1db1786ef580951efe1a6ff8e301b30484573.zip hdf5-cfd1db1786ef580951efe1a6ff8e301b30484573.tar.gz hdf5-cfd1db1786ef580951efe1a6ff8e301b30484573.tar.bz2 |
[svn-r6647] Purpose:
Code cleanup & new feature
Description:
Track changes to H5AC API (code cleanup)
Added routine to delete B-tree in file.
Platforms tested:
FreeBSD 4.8 (sleipnir) w/C++
Linux 2.4 (burrwhite) w/FORTRAN
Solaris 2.7 (arabica) w/FORTRAN
IRIX64 6.5 (modi4) w/parallel & FORTRAN
(h5committest not run due to my ongoing difficulties with C++ on burrwhite).
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r-- | src/H5Bprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index 7b13764..99f079e 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -147,6 +147,8 @@ H5_DLL herr_t H5B_iterate (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, H5B op, haddr_t addr, void *udata); H5_DLL herr_t H5B_remove(H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, haddr_t addr, void *udata); +H5_DLL herr_t H5B_delete(H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, haddr_t addr, + void *udata); H5_DLL herr_t H5B_debug (H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE * stream, int indent, int fwidth, const H5B_class_t *type, void *udata); |