diff options
author | Gerd Heber <gheber@hdfgroup.org> | 2020-11-09 17:15:58 (GMT) |
---|---|---|
committer | Gerd Heber <gheber@hdfgroup.org> | 2020-11-09 17:15:58 (GMT) |
commit | dddd15cccff9a57cec2cf4b222f9cf8985aae647 (patch) | |
tree | f429c4d1ee3b1f7a13002c73ada516f0d985383d /src/H5public.h | |
parent | bb6bb5716579581123ba75b0ef2f2c453f86ff69 (diff) | |
download | hdf5-dddd15cccff9a57cec2cf4b222f9cf8985aae647.zip hdf5-dddd15cccff9a57cec2cf4b222f9cf8985aae647.tar.gz hdf5-dddd15cccff9a57cec2cf4b222f9cf8985aae647.tar.bz2 |
First cut of H5F.
Diffstat (limited to 'src/H5public.h')
-rw-r--r-- | src/H5public.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5public.h b/src/H5public.h index 5b9a5fe..1784a11 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -333,13 +333,15 @@ typedef enum H5_index_t { H5_INDEX_N /* Number of indices defined */ } H5_index_t; -/* +/** * Storage info struct used by H5O_info_t and H5F_info_t */ +//! [H5_ih_info_t_snip] typedef struct H5_ih_info_t { - hsize_t index_size; /* btree and/or list */ + hsize_t index_size; /**< btree and/or list */ hsize_t heap_size; } H5_ih_info_t; +//! [H5_ih_info_t_snip] /* Tokens are unique and permanent identifiers that are * used to reference HDF5 objects in a container. */ |