summaryrefslogtreecommitdiffstats
path: root/src/H5Opublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-10-07 15:27:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-10-07 15:27:30 (GMT)
commit36ac2a176955ce29d1bbf7db0c29cee6fd5ecedb (patch)
tree1dbda3be345320fe0b2c20c2219530befe2d6269 /src/H5Opublic.h
parent134a692a8365ab5f196155298b6b601889c80a32 (diff)
downloadhdf5-36ac2a176955ce29d1bbf7db0c29cee6fd5ecedb.zip
hdf5-36ac2a176955ce29d1bbf7db0c29cee6fd5ecedb.tar.gz
hdf5-36ac2a176955ce29d1bbf7db0c29cee6fd5ecedb.tar.bz2
[svn-r7562] Purpose:
Feature add Description: Add a few new fields to the H5G_stat_t structure, to allow more information about the object header to be retrieved. Platforms tested: FreeBSD 4.9 (sleipnir) h5committest
Diffstat (limited to 'src/H5Opublic.h')
-rw-r--r--src/H5Opublic.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/H5Opublic.h b/src/H5Opublic.h
index 59d117d..e71ff9c 100644
--- a/src/H5Opublic.h
+++ b/src/H5Opublic.h
@@ -14,7 +14,7 @@
/*-------------------------------------------------------------------------
*
- * Created: H5Oproto.h
+ * Created: H5Opublic.h
* Aug 5 1997
* Robb Matzke <matzke@llnl.gov>
*
@@ -31,6 +31,13 @@
/* Public headers needed by this file */
#include "H5public.h"
+typedef struct H5O_stat_t {
+ hsize_t size; /* Total size of object header in file */
+ hsize_t free; /* Free space within object header */
+ unsigned nmesgs; /* Number of object header messages */
+ unsigned nchunks; /* Number of object header chunks */
+} H5O_stat_t;
+
#ifdef __cplusplus
extern "C" {
#endif