diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:24:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:24:36 (GMT) |
commit | 7e7b6854e63f185fcddd9158a2c67450c4d94e0c (patch) | |
tree | bdcedead9912e4b8168ab5a2c0680f054856e946 /src/H5Ppublic.h | |
parent | d2b293884ee923b1116c51e4c10667aff379b4ed (diff) | |
download | hdf5-7e7b6854e63f185fcddd9158a2c67450c4d94e0c.zip hdf5-7e7b6854e63f185fcddd9158a2c67450c4d94e0c.tar.gz hdf5-7e7b6854e63f185fcddd9158a2c67450c4d94e0c.tar.bz2 |
[svn-r2493] Added a set/get pair of property modifiers to allows users to set/query the
metadata allocation size for file access property lists. These are new API
functions and should be documented for the next release.
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index b84ea14..0ae36aa 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -179,6 +179,8 @@ __DLL__ herr_t H5Pget_vlen_mem_manager(hid_t plist_id, void **alloc_info, H5MM_free_t *free_func, void **free_info); +__DLL__ herr_t H5Pset_meta_block_size(hid_t fapl_id, hsize_t size); +__DLL__ herr_t H5Pget_meta_block_size(hid_t fapl_id, hsize_t *size/*out*/); #ifdef __cplusplus } |