diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-05 19:04:58 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-05 19:04:58 (GMT) |
commit | 253123994aaecc1f1fc917383b663104d6630d0f (patch) | |
tree | ac0403519f6f72e7c5aa767159106bd83adcafa4 /src/H5Ppublic.h | |
parent | bfbac647b03b135de5eb683f012ef3453aeac1d3 (diff) | |
download | hdf5-253123994aaecc1f1fc917383b663104d6630d0f.zip hdf5-253123994aaecc1f1fc917383b663104d6630d0f.tar.gz hdf5-253123994aaecc1f1fc917383b663104d6630d0f.tar.bz2 |
[svn-r4675] Purpose:
Backward Compatibility Fix
Description:
One of H5P[gs]et_sieve_buf_size's parameters changed between v1.4 and the
development branch.
Solution:
Added v1.4 compat stuff around H5P[gs]et_sieve_buf_size implementation and
testing to allow v1.4.x users to continue to use their source code without
modification.
There are no C++ or FORTRAN wrappers for these functions.
There are also no regression tests for these functions... :-(
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index bca20bf..bbfba2c 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -239,8 +239,13 @@ __DLL__ herr_t H5Pget_meta_block_size(hid_t fapl_id, hsize_t *size/*out*/); __DLL__ herr_t H5Pset_meta_block_size(hid_t fapl_id, size_t size); __DLL__ herr_t H5Pget_meta_block_size(hid_t fapl_id, size_t *size/*out*/); #endif /* H5_WANT_H5_V1_4_COMPAT */ +#ifdef H5_WANT_H5_V1_4_COMPAT +__DLL__ herr_t H5Pset_sieve_buf_size(hid_t fapl_id, hsize_t size); +__DLL__ herr_t H5Pget_sieve_buf_size(hid_t fapl_id, hsize_t *size/*out*/); +#else /* H5_WANT_H5_V1_4_COMPAT */ __DLL__ herr_t H5Pset_sieve_buf_size(hid_t fapl_id, size_t size); __DLL__ herr_t H5Pget_sieve_buf_size(hid_t fapl_id, size_t *size/*out*/); +#endif /* H5_WANT_H5_V1_4_COMPAT */ __DLL__ herr_t H5Pset_hyper_vector_size(hid_t fapl_id, size_t size); __DLL__ herr_t H5Pget_hyper_vector_size(hid_t fapl_id, size_t *size/*out*/); |