diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-08-22 15:53:07 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-08-22 15:53:07 (GMT) |
commit | a72dc6c92c78650589a9f13d7221318dd1032efe (patch) | |
tree | 761d5b07a4814de36d88adc5bfebc161e29adabe /tools/h5repack/h5repack.h | |
parent | e9f3b20b64d3c2ffe2e134a5c4bf974c916472b8 (diff) | |
download | hdf5-a72dc6c92c78650589a9f13d7221318dd1032efe.zip hdf5-a72dc6c92c78650589a9f13d7221318dd1032efe.tar.gz hdf5-a72dc6c92c78650589a9f13d7221318dd1032efe.tar.bz2 |
[svn-r15521] #1184
Add a userblock to an HDF5 file during the repack. The user gives
give a filename and userblock size as command line parameters to
h5repack and the contents of that file are stored in the
userblock for the HDF5 file created by h5repack.
New flags to handle this -u and -b
Tested : windows, linux
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r-- | tools/h5repack/h5repack.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h index 80fb1b0..42b9bbc 100644 --- a/tools/h5repack/h5repack.h +++ b/tools/h5repack/h5repack.h @@ -106,6 +106,8 @@ typedef struct { int grp_indexed; /* Set the minimum number of links to store in the indexed format */ int msg_size[8]; /* Minumum size of shared messages: dataspace, datatype, fill value, filter pipleline, attribute */ + const char *ublock_filename; /* user block file name */ + int ublock_size; /* user block size */ } pack_opt_t; |