diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-04-21 18:36:10 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-04-21 18:36:10 (GMT) |
commit | 8cd9d8349e5984d8a6f78c9c0c1bb566a9960b23 (patch) | |
tree | 5c5dce61c112c4f31ec0bfb5b65b00f2157269a7 /tools/lib/h5diff.h | |
parent | c6097935d5be4c3750b9bf9167783ad28158905b (diff) | |
download | hdf5-8cd9d8349e5984d8a6f78c9c0c1bb566a9960b23.zip hdf5-8cd9d8349e5984d8a6f78c9c0c1bb566a9960b23.tar.gz hdf5-8cd9d8349e5984d8a6f78c9c0c1bb566a9960b23.tar.bz2 |
Added VOL command-line options to (p)h5diff, h5ls, h5dump, and h5mkgrp.
Diffstat (limited to 'tools/lib/h5diff.h')
-rw-r--r-- | tools/lib/h5diff.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index b04ec23..1ac1dd7 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -15,6 +15,7 @@ #define H5DIFF_H__ #include "hdf5.h" +#include "h5tools.h" #include "h5trav.h" /* @@ -86,6 +87,10 @@ typedef struct { int m_list_not_cmp; /* list not comparable messages */ int exclude_path; /* exclude path to an object */ struct exclude_path_list * exclude; /* keep exclude path list */ + h5tools_vol_info_t in_vol_info; /* VOL information for input file */ + h5tools_vol_info_t out_vol_info; /* VOL information for output file */ + hbool_t custom_in_vol; /* Using a custom input VOL? */ + hbool_t custom_out_vol; /* Using a custom output VOL? */ } diff_opt_t; |