summaryrefslogtreecommitdiffstats
path: root/src/H5CXprivate.h
diff options
context:
space:
mode:
authorChris Hogan <chogan@hdfgroup.org>2019-11-04 20:42:08 (GMT)
committerChris Hogan <chogan@hdfgroup.org>2019-11-04 20:42:08 (GMT)
commit77a0f4087f4aeea7f1cf43ef5bc44cd1ce1bf5f3 (patch)
treeab0e6e27571bdaa85c175a52976f78c1e035ef91 /src/H5CXprivate.h
parente6d63889051caa9393afcbac277ad41913a020a0 (diff)
downloadhdf5-77a0f4087f4aeea7f1cf43ef5bc44cd1ce1bf5f3.zip
hdf5-77a0f4087f4aeea7f1cf43ef5bc44cd1ce1bf5f3.tar.gz
hdf5-77a0f4087f4aeea7f1cf43ef5bc44cd1ce1bf5f3.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);