summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-11 15:05:36 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-11 15:05:36 (GMT)
commite967d54ce373727820303311fcd631a41be4392c (patch)
treec762ced1109e615a1c814703791904cbb9351957 /tools
parent7a34f6dd5da90f8c3d8bb6b93354c1f416a3cfcf (diff)
downloadhdf5-e967d54ce373727820303311fcd631a41be4392c.zip
hdf5-e967d54ce373727820303311fcd631a41be4392c.tar.gz
hdf5-e967d54ce373727820303311fcd631a41be4392c.tar.bz2
Change defines to not conflict with windows
Diffstat (limited to 'tools')
-rw-r--r--tools/lib/h5tools.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h
index 11ba612..dad4af7 100644
--- a/tools/lib/h5tools.h
+++ b/tools/lib/h5tools.h
@@ -504,6 +504,19 @@ typedef struct h5tool_format_t {
} h5tool_format_t;
+typedef struct subset_d {
+ hsize_t *data;
+ unsigned int len;
+} subset_d;
+
+/* a structure to hold the subsetting particulars for a dataset */
+struct subset_t {
+ subset_d start;
+ subset_d stride;
+ subset_d count;
+ subset_d block;
+};
+
typedef struct h5tools_context_t {
size_t cur_column; /* current column for output */
size_t cur_elmt; /* current element/output line */
@@ -523,22 +536,9 @@ typedef struct h5tools_context_t {
const struct H5LD_memb_t * const *cmpd_listv; /* h5watch: vector containing info about the list of compound fields to be printed */
struct subset_t *sset; /* subsetting parameters */
int display_index; /* */
- int display_char; /* */
+ int display_char; /* */
} h5tools_context_t;
-typedef struct subset_d {
- hsize_t *data;
- unsigned int len;
-} subset_d;
-
-/* a structure to hold the subsetting particulars for a dataset */
-struct subset_t {
- subset_d start;
- subset_d stride;
- subset_d count;
- subset_d block;
-};
-
/* The following include, h5tools_str.h, must be after the
* above stucts are defined. There is a dependency in the following
* include that hasn't been identified yet. */