summaryrefslogtreecommitdiffstats
path: root/src/H5CXprivate.h
diff options
context:
space:
mode:
authorChris Hogan <chogan@hdfgroup.org>2019-11-04 20:42:08 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:17:26 (GMT)
commitd596963eb9acc751cf327907219a2f4462a6a710 (patch)
tree0e3489fff81d87fff4f518004df34dfde99a6af6 /src/H5CXprivate.h
parent7555de2a26579f59dfe44294634b66cf6b6b5bab (diff)
downloadhdf5-d596963eb9acc751cf327907219a2f4462a6a710.zip
hdf5-d596963eb9acc751cf327907219a2f4462a6a710.tar.gz
hdf5-d596963eb9acc751cf327907219a2f4462a6a710.tar.bz2
Add character encoding to lcpl context
Diffstat (limited to 'src/H5CXprivate.h')
-rw-r--r--src/H5CXprivate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5CXprivate.h b/src/H5CXprivate.h
index 422832e..e3e9780 100644
--- a/src/H5CXprivate.h
+++ b/src/H5CXprivate.h
@@ -43,6 +43,7 @@
typedef struct H5CX_state_t {
hid_t dxpl_id; /* DXPL for operation */
hid_t lapl_id; /* LAPL for operation */
+ hid_t lcpl_id; /* LCPL for operation */
void *vol_wrap_ctx; /* VOL connector's "wrap context" for creating IDs */
H5VL_connector_prop_t vol_connector_prop; /* VOL connector property */
@@ -124,7 +125,8 @@ 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);
+H5_DLL herr_t H5CX_get_encoding(H5T_cset_t* encoding);
+H5_DLL herr_t H5CX_get_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);