diff options
author | Chris Hogan <chogan@hdfgroup.org> | 2019-11-14 21:56:15 (GMT) |
---|---|---|
committer | Chris Hogan <chogan@hdfgroup.org> | 2019-11-14 21:56:15 (GMT) |
commit | a7b35b8584e547d72ff4c215a0295fa9f1241082 (patch) | |
tree | 476d11725a759b7dae3f9e461875ff291a4cf83a /src/H5CXprivate.h | |
parent | 07ff0a842a41f4e6a257d9e957e5fbc5628d996e (diff) | |
download | hdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.zip hdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.tar.gz hdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.tar.bz2 |
Add object header flags to API context
Add missing DCPL to API context state
Replace a couple LCPL H5P_get calls with H5CX_get_*
Diffstat (limited to 'src/H5CXprivate.h')
-rw-r--r-- | src/H5CXprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5CXprivate.h b/src/H5CXprivate.h index e3e9780..2ae71f3 100644 --- a/src/H5CXprivate.h +++ b/src/H5CXprivate.h @@ -41,6 +41,7 @@ /* API context state */ typedef struct H5CX_state_t { + hid_t dcpl_id; /* DCPL for operation */ hid_t dxpl_id; /* DXPL for operation */ hid_t lapl_id; /* LAPL for operation */ hid_t lcpl_id; /* LCPL for operation */ @@ -133,6 +134,7 @@ H5_DLL herr_t H5CX_get_nlinks(size_t *nlinks); /* "Getter" routines for DCPL properties cached in API context */ H5_DLL herr_t H5CX_get_dset_min_ohdr_flag(hbool_t *dset_min_ohdr_flag); +H5_DLL herr_t H5CX_get_ohdr_flags(uint8_t *ohdr_flags); /* "Getter" routines for DAPL properties cached in API context */ H5_DLL herr_t H5CX_get_ext_file_prefix(const char **prefix_extfile); |