diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-05 16:42:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-05 16:42:40 (GMT) |
commit | 4886a6c447dc445ed34d8c6ea162b57cbbcec72b (patch) | |
tree | df5e3f11b8af2766dcd07418331747c085245afb /src/H5Ppublic.h | |
parent | a9c747deba6e588b2ec5bc624a53c976a9faa3bc (diff) | |
download | hdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.zip hdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.tar.gz hdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.tar.bz2 |
[svn-r4670] Purpose:
Backward Compatibility Fix
Description:
One of H5P[gs]et_sym_k's parameters changed between v1.4 and the development
branch.
Solution:
Added v1.4 compat stuff around H5P[gs]et_sym_k implementation and testing
to allow v1.4.x users to continue to use their source code without
modification.
These changes are for everything except the FORTRAN wrappers - I spoke with
Elena and she will make the FORTRAN wrapper changes.
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 9a34f58..bd908f4 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -156,8 +156,13 @@ __DLL__ herr_t H5Pset_sizes(hid_t plist_id, size_t sizeof_addr, size_t sizeof_size); __DLL__ herr_t H5Pget_sizes(hid_t plist_id, size_t *sizeof_addr/*out*/, size_t *sizeof_size/*out*/); +#ifdef H5_WANT_H5_V1_4_COMPAT +__DLL__ herr_t H5Pset_sym_k(hid_t plist_id, int ik, int lk); +__DLL__ herr_t H5Pget_sym_k(hid_t plist_id, int *ik/*out*/, int *lk/*out*/); +#else /* H5_WANT_H5_V1_4_COMPAT */ __DLL__ herr_t H5Pset_sym_k(hid_t plist_id, int ik, unsigned lk); __DLL__ herr_t H5Pget_sym_k(hid_t plist_id, int *ik/*out*/, unsigned *lk/*out*/); +#endif /* H5_WANT_H5_V1_4_COMPAT */ __DLL__ herr_t H5Pset_istore_k(hid_t plist_id, int ik); __DLL__ herr_t H5Pget_istore_k(hid_t plist_id, int *ik/*out*/); __DLL__ herr_t H5Pset_layout(hid_t plist_id, H5D_layout_t layout); |