summaryrefslogtreecommitdiffstats
path: root/tools/h5tools.h
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>2000-02-17 18:35:30 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>2000-02-17 18:35:30 (GMT)
commit6a2bc2f4aa425e8e515cd348f0d4e81d4992ae1e (patch)
treeeaf5cbb8fddf298a55cf87839bbd51e3d8e4b07b /tools/h5tools.h
parent82cd7cca30d82e5b68ff8e9d2e10335d89ad9884 (diff)
downloadhdf5-6a2bc2f4aa425e8e515cd348f0d4e81d4992ae1e.zip
hdf5-6a2bc2f4aa425e8e515cd348f0d4e81d4992ae1e.tar.gz
hdf5-6a2bc2f4aa425e8e515cd348f0d4e81d4992ae1e.tar.bz2
[svn-r1973] fixed the dataset regions problem with the dumper.
now the dump structure contains 2 extra members that tell how to format the data for the dataset regions(blocks and pts). had to give h5ls values for these
Diffstat (limited to 'tools/h5tools.h')
-rw-r--r--tools/h5tools.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/h5tools.h b/tools/h5tools.h
index eb92dab..bb145ec 100644
--- a/tools/h5tools.h
+++ b/tools/h5tools.h
@@ -265,6 +265,14 @@ typedef struct h5dump_t {
int obj_hidefileno; /*flag used to hide or show the file number for obj refs*/
const char *obj_format; /*string used to format the output for the obje refs*/
+ int dset_hidefileno;/*flag used to hide or show the file number for dataset regions*/
+ const char *dset_format; /*string used to format the output for the dataset regions*/
+
+ const char *dset_blockformat_pre;
+ const char *dset_ptformat_pre;
+ const char *dset_ptformat;
+
+
} h5dump_t;