diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-11-02 17:11:37 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-11-02 17:11:37 (GMT) |
commit | cf316348843f202a0c3b192241ba9deec5896b91 (patch) | |
tree | 7f7ba37ad66ebfd4dcf9a6cf79ec73dd3c46db61 /tools/h5tools.h | |
parent | 08482c22b788493509941665b1bf5f46d5d0e29e (diff) | |
download | hdf5-cf316348843f202a0c3b192241ba9deec5896b91.zip hdf5-cf316348843f202a0c3b192241ba9deec5896b91.tar.gz hdf5-cf316348843f202a0c3b192241ba9deec5896b91.tar.bz2 |
[svn-r1805] more changes. I found some duplicate functions in the library and the dumper.
so i moved the dumper stuff out to the libary. Had to change some functions
in h5findshd so they would stop using globals that shouldn't be defined in the
lib. I will remove the globals next. also the h5findshd.c has an extra member
to the struct for that objects in the table so i added that into the appropriate place.
the dumper is working ok now but the h5toh4 is still broken.
Diffstat (limited to 'tools/h5tools.h')
-rw-r--r-- | tools/h5tools.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5tools.h b/tools/h5tools.h index 96b6ed6..939178a 100644 --- a/tools/h5tools.h +++ b/tools/h5tools.h @@ -272,6 +272,7 @@ unsigned long objno[2]; char objname[1024]; int displayed; int recorded; +int objflag; } obj_t; @@ -298,7 +299,8 @@ typedef struct find_objs_t { herr_t find_objs(hid_t group, const char *name, void *op_data); int search_obj (table_t *temp, unsigned long *); - +void init_table(table_t **temp); +void init_prefix(char **temp); /* taken from h5dump.h */ |