summaryrefslogtreecommitdiffstats
path: root/tools/h5dump.h
diff options
context:
space:
mode:
authorRuey-Hsia Li <rli@ncsa.uiuc.edu>1998-09-28 14:59:49 (GMT)
committerRuey-Hsia Li <rli@ncsa.uiuc.edu>1998-09-28 14:59:49 (GMT)
commit1b13f305ad4a5a18262c797cf9e05511904cfe73 (patch)
tree41d02fc65dd5bfefe9cbceeba87639b893687eb3 /tools/h5dump.h
parentc0941f01e38812435e8dd2052d3d7b5deab045dc (diff)
downloadhdf5-1b13f305ad4a5a18262c797cf9e05511904cfe73.zip
hdf5-1b13f305ad4a5a18262c797cf9e05511904cfe73.tar.gz
hdf5-1b13f305ad4a5a18262c797cf9e05511904cfe73.tar.bz2
[svn-r727] Implemented dumper command line options.
Added tests for dumper options.
Diffstat (limited to 'tools/h5dump.h')
-rw-r--r--tools/h5dump.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/tools/h5dump.h b/tools/h5dump.h
index b99e58d..aa1d296 100644
--- a/tools/h5dump.h
+++ b/tools/h5dump.h
@@ -16,7 +16,10 @@
#define COMPRESSION "COMPRESSION"
#define EXTERNAL "EXTERNAL"
#define SOFTLINK "SOFTLINK"
+#define HARDLINK "HARDLINK"
#define NLINK "NLINK"
+#define FILENO "FILENO"
+#define OBJNO "OBJNO"
#define BEGIN "{"
#define END "}"
@@ -25,10 +28,20 @@
#define DATASET_DATA 1
-#define begin_obj(x,y) printf("%s \"%s\" %s\n", x, y, BEGIN)
-#define end_obj() printf("%s\n", END);
+#define begin_obj(obj,name) printf("%s \"%s\" %s\n", obj, name, BEGIN)
+#define end_obj() printf("%s\n", END);
+
+#define col 3
+
+
+/*
+typedef enum
+ {
+ h, bb, header, a, d, g, l
+ }
+command_t;
+*/
-#define col 3;
#endif