diff options
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r-- | src/H5B2private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/H5B2private.h b/src/H5B2private.h index 6f90ef6..0990317 100644 --- a/src/H5B2private.h +++ b/src/H5B2private.h @@ -95,6 +95,11 @@ typedef struct H5B2_class_t { } H5B2_class_t; +/* v2 B-tree metadata statistics info */ +typedef struct H5B2_stat_t { + int none; /* No information yet */ +} H5B2_stat_t; + /*****************************/ /* Library-private Variables */ /*****************************/ @@ -126,5 +131,9 @@ H5_DLL herr_t H5B2_get_nrec(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, H5_DLL herr_t H5B2_delete(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr); +/* Statistics routines */ +H5_DLL herr_t H5B2_stat_info(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, + haddr_t addr, H5B2_stat_t *info); + #endif /* _H5B2private_H */ |