summaryrefslogtreecommitdiffstats
path: root/src/H5B2private.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-07-15 19:49:04 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-07-15 19:49:04 (GMT)
commite9d6c992d638f25a461c65411678f5fac8282257 (patch)
tree5c714117d1d8997550d77997b85e5a6f8e401d13 /src/H5B2private.h
parentf9ac366dbd2c27c76048fe2619767943f860583b (diff)
downloadhdf5-e9d6c992d638f25a461c65411678f5fac8282257.zip
hdf5-e9d6c992d638f25a461c65411678f5fac8282257.tar.gz
hdf5-e9d6c992d638f25a461c65411678f5fac8282257.tar.bz2
[svn-r12474]
Clean up some compiler warnings. Tested on: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r--src/H5B2private.h9
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 */