diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-21 06:56:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-21 06:56:13 (GMT) |
commit | 8939a2190f50ab42c6b59c0d2df33ac66bb625e7 (patch) | |
tree | add67102c16433e043e348b6ffd34544101b2b42 /examples | |
parent | 23ff0240ae18d52ac8164c7a55d698e7b2cd5dcc (diff) | |
download | hdf5-8939a2190f50ab42c6b59c0d2df33ac66bb625e7.zip hdf5-8939a2190f50ab42c6b59c0d2df33ac66bb625e7.tar.gz hdf5-8939a2190f50ab42c6b59c0d2df33ac66bb625e7.tar.bz2 |
Add info_to_str and str_to_info "management" callbacks for serializing and
deserializing a connector's info object.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/h5_vol_external_log_native.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/h5_vol_external_log_native.c b/examples/h5_vol_external_log_native.c index 0d48b73..19eaa5e 100644 --- a/examples/h5_vol_external_log_native.c +++ b/examples/h5_vol_external_log_native.c @@ -53,6 +53,8 @@ static const H5VL_class_t H5VL_log_g = { NULL, /* info copy */ NULL, /* info compare */ NULL, /* info free */ + NULL, /* info to str */ + NULL, /* str to info */ NULL, /* get_object */ NULL, /* get_wrap_ctx */ NULL, /* free_wrap_ctx */ |