diff options
author | Chris Hogan <chogan@hdfgroup.org> | 2019-10-28 21:24:54 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:17:26 (GMT) |
commit | d4fb9dbc6100d235f93e4803db7a4a10fbc8eeab (patch) | |
tree | 9f8d9c74c3b7994d70ea46f56a1a0a9f01eb1015 /src/H5CXprivate.h | |
parent | 49a4f6e64bca3576c90baad4ac92e300e7cea480 (diff) | |
download | hdf5-d4fb9dbc6100d235f93e4803db7a4a10fbc8eeab.zip hdf5-d4fb9dbc6100d235f93e4803db7a4a10fbc8eeab.tar.gz hdf5-d4fb9dbc6100d235f93e4803db7a4a10fbc8eeab.tar.bz2 |
Use API context to store/retrieve LCPL when creating intermediate groups
Diffstat (limited to 'src/H5CXprivate.h')
-rw-r--r-- | src/H5CXprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5CXprivate.h b/src/H5CXprivate.h index 2f86adf..422832e 100644 --- a/src/H5CXprivate.h +++ b/src/H5CXprivate.h @@ -77,6 +77,7 @@ H5_DLL herr_t H5CX_free_state(H5CX_state_t *api_state); /* "Setter" routines for API context info */ H5_DLL void H5CX_set_dxpl(hid_t dxpl_id); +H5_DLL void H5CX_set_lcpl(hid_t lcpl_id); H5_DLL void H5CX_set_lapl(hid_t lapl_id); H5_DLL void H5CX_set_dcpl(hid_t dcpl_id); H5_DLL herr_t H5CX_set_libver_bounds(H5F_t *f); @@ -122,6 +123,9 @@ H5_DLL herr_t H5CX_get_data_transform(H5Z_data_xform_t **data_transform); H5_DLL herr_t H5CX_get_vlen_alloc_info(H5T_vlen_alloc_info_t *vl_alloc_info); H5_DLL herr_t H5CX_get_dt_conv_cb(H5T_conv_cb_t *cb_struct); +/* "Getter" routines for LCPL properties cached in API context */ +H5_DLL herr_t H5CX_get_create_intermediate_group(unsigned* crt_intermed_group); + /* "Getter" routines for LAPL properties cached in API context */ H5_DLL herr_t H5CX_get_nlinks(size_t *nlinks); |