diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2000-10-18 03:48:10 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2000-10-18 03:48:10 (GMT) |
commit | 3cea3093c854b225088c4cabe140b333d08e5462 (patch) | |
tree | 2f076db0619461182b322a719a529ab302b47c07 /tools/h4toh5vgroup.c | |
parent | f71aa7cb6c60a94190fd8039c31a24fa994643e3 (diff) | |
download | hdf5-3cea3093c854b225088c4cabe140b333d08e5462.zip hdf5-3cea3093c854b225088c4cabe140b333d08e5462.tar.gz hdf5-3cea3093c854b225088c4cabe140b333d08e5462.tar.bz2 |
[svn-r2691]
Purpose:
1. fix multiple defination warnings at sgi platform
2. adding chunking information from hdf4 to hdf5 property list.
Description:
1. Orginally global varibles were defined at one header file and this
header file were included by other .c file and .h file so multiple warnings are
generated.
2. Chunking information was not included in the previous version.
Solution:
1. use "extern" to define global variables at h4toh5util.h file and define global variables
at h4toh5main.c
2. retrieve the chunking info from sdgetchunkinfo and GRgetchunkinfo and store these information
into hdf5 property list.
Platforms tested:
eirene,arabica,paz,gondolin
Diffstat (limited to 'tools/h4toh5vgroup.c')
-rw-r--r-- | tools/h4toh5vgroup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/h4toh5vgroup.c b/tools/h4toh5vgroup.c index 14e1c0f..4bea19e 100644 --- a/tools/h4toh5vgroup.c +++ b/tools/h4toh5vgroup.c @@ -24,6 +24,7 @@ *------------------------------------------------------------------------- */ + int Vgroup_h4_to_h5(int32 file_id,int32 vgroup_id,int32 sd_id,hid_t h5_group,hid_t h5_dimgroup,hid_t h5_palgroup) { |