diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-07 15:27:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-07 15:27:19 (GMT) |
commit | 58c03f79fd15001ee30b36d0afba14fc8dcaf687 (patch) | |
tree | 6fad648f6c3aec38f44f2d4a9c142c288f363e0a /src/H5Opublic.h | |
parent | f766b32d07fae4562e95b9166255c35c8f3e467a (diff) | |
download | hdf5-58c03f79fd15001ee30b36d0afba14fc8dcaf687.zip hdf5-58c03f79fd15001ee30b36d0afba14fc8dcaf687.tar.gz hdf5-58c03f79fd15001ee30b36d0afba14fc8dcaf687.tar.bz2 |
[svn-r7561] 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.h | 9 |
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 |