diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-03-27 20:09:01 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-03-27 20:09:01 (GMT) |
commit | 26e1b18a578af61b491ff47a32779507df77a6ff (patch) | |
tree | 7ed5546454ffd360082b8ab2da1b7f85677cb3c0 /tools/h5repack/h5repack.h | |
parent | 983e043587f221bc2d0ebc17e403f8f61f438dfd (diff) | |
download | hdf5-26e1b18a578af61b491ff47a32779507df77a6ff.zip hdf5-26e1b18a578af61b491ff47a32779507df77a6ff.tar.gz hdf5-26e1b18a578af61b491ff47a32779507df77a6ff.tar.bz2 |
[svn-r12159] Purpose:
bug fix
Description:
h5repack was not dealing with family files
Solution:
use the toolslib function h5tools_open to open the file instead of H5Fopen in h5repack
Platforms tested:
linux
solaris
AIX
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r-- | tools/h5repack/h5repack.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h index 3647d43..e835b66 100644 --- a/tools/h5repack/h5repack.h +++ b/tools/h5repack/h5repack.h @@ -114,7 +114,8 @@ typedef struct { extern "C" { #endif -int h5repack (const char* infile, const char* outfile, pack_opt_t *options); +int h5repack (const char* infile, const char* outfile, pack_opt_t *options, + int argc, const char *argv[]); int h5repack_addfilter (const char* str, pack_opt_t *options); int h5repack_addlayout (const char* str, pack_opt_t *options); int h5repack_init (pack_opt_t *options, int verbose); @@ -137,11 +138,15 @@ int h5repack_cmpdcpl (const char *fname1, int check_objects(const char* fname, - pack_opt_t *options); + pack_opt_t *options, + int argc, + const char *argv[]); int copy_objects(const char* fnamein, const char* fnameout, - pack_opt_t *options); + pack_opt_t *options, + int argc, + const char *argv[]); void print_objlist(const char *filename, int nobjects, |