summaryrefslogtreecommitdiffstats
path: root/src/H5VLprivate.h
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2021-03-15 13:16:41 (GMT)
committerGitHub <noreply@github.com>2021-03-15 13:16:41 (GMT)
commitc193d436f512e73be6569e56bf875bb2673ebdf8 (patch)
tree612757b041e867107053d03a2eb4ab1a9600bf51 /src/H5VLprivate.h
parenta09e1ea2191ad0ea2a72f7bd519b2cc95f218328 (diff)
downloadhdf5-c193d436f512e73be6569e56bf875bb2673ebdf8.zip
hdf5-c193d436f512e73be6569e56bf875bb2673ebdf8.tar.gz
hdf5-c193d436f512e73be6569e56bf875bb2673ebdf8.tar.bz2
Merge H5Fopen VOL auto-detect feature and latest VOL fixes to 1.12 (#395)
* Enable H5Fopen to probe list of available VOL connectors when opening a file * Unwrap file VOL object when destroying file (#308) * Check for wrap context before unwrapping file VOL object in H5F__dest (#325)
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r--src/H5VLprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h
index d87ebb1..678a27f 100644
--- a/src/H5VLprivate.h
+++ b/src/H5VLprivate.h
@@ -181,7 +181,7 @@ H5_DLL herr_t H5VL_datatype_close(const H5VL_object_t *vol_obj, hid_t dxpl_id, v
/* File functions */
H5_DLL void * H5VL_file_create(const H5VL_connector_prop_t *connector_prop, const char *name, unsigned flags,
hid_t fcpl_id, hid_t fapl_id, hid_t dxpl_id, void **req);
-H5_DLL void * H5VL_file_open(const H5VL_connector_prop_t *connector_prop, const char *name, unsigned flags,
+H5_DLL void * H5VL_file_open(H5VL_connector_prop_t *connector_prop, const char *name, unsigned flags,
hid_t fapl_id, hid_t dxpl_id, void **req);
H5_DLL herr_t H5VL_file_get(const H5VL_object_t *vol_obj, H5VL_file_get_t get_type, hid_t dxpl_id, void **req,
...);