summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-04-09 15:40:41 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-04-09 15:40:41 (GMT)
commitd86089f583382c0379f446a5e4d552599ed5b3b4 (patch)
treeaafd959aa4b0bcd094a5b099621faa3bc795e87e /tools/lib/h5tools.h
parent35c0d5cdfcfaa84f59e1c596ba1ccaeb28e3d83d (diff)
downloadhdf5-d86089f583382c0379f446a5e4d552599ed5b3b4.zip
hdf5-d86089f583382c0379f446a5e4d552599ed5b3b4.tar.gz
hdf5-d86089f583382c0379f446a5e4d552599ed5b3b4.tar.bz2
Added support for passing connector info strings via the command
line to the tools internals.
Diffstat (limited to 'tools/lib/h5tools.h')
-rw-r--r--tools/lib/h5tools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h
index 5244f7be..fd09a14 100644
--- a/tools/lib/h5tools.h
+++ b/tools/lib/h5tools.h
@@ -549,7 +549,7 @@ typedef struct h5tools_fapl_info_t {
h5tools_fapl_info_type_t type;
/* Pointer to information to be passed to the driver/connector for its setup */
- const void *info;
+ const char *info_string;
/* Field specifying either the driver's/connector's name or ID */
union {
@@ -637,7 +637,7 @@ H5TOOLS_DLL int h5tools_set_attr_output_file(const char *fname, int is_bin);
H5TOOLS_DLL int h5tools_set_input_file(const char *fname, int is_bin);
H5TOOLS_DLL int h5tools_set_output_file(const char *fname, int is_bin);
H5TOOLS_DLL int h5tools_set_error_file(const char *fname, int is_bin);
-H5TOOLS_DLL hid_t h5tools_get_fapl(hid_t fapl, h5tools_fapl_info_t *fapl_info);
+H5TOOLS_DLL hid_t h5tools_get_fapl(hid_t prev_fapl_id, h5tools_fapl_info_t *fapl_info);
H5TOOLS_DLL herr_t h5tools_get_vfd_name(hid_t fapl_id, char *drivername, size_t drivername_size);
H5TOOLS_DLL hid_t h5tools_fopen(const char *fname, unsigned flags, hid_t fapl,
hbool_t use_specific_driver, char *drivername, size_t drivername_size);