diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-27 23:09:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-27 23:09:35 (GMT) |
commit | 91c1a6df54836d585dcab57b6453867290da5eb8 (patch) | |
tree | 3179c22066f9880e7f09849e8a620ad398f68fa9 /src/H5Fprivate.h | |
parent | 05f1e4f778a3535135339293953d89cee8874854 (diff) | |
download | hdf5-91c1a6df54836d585dcab57b6453867290da5eb8.zip hdf5-91c1a6df54836d585dcab57b6453867290da5eb8.tar.gz hdf5-91c1a6df54836d585dcab57b6453867290da5eb8.tar.bz2 |
[svn-r16367] Description:
Refactor internal address encode/decode routines slightly, to allow for
more flexible use.
Tested on:
Mac OS X/32 (amazon)
FreeBSD/32 (duty)
(too minor to require h5committest)
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index e717b99..cd6bcd0 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -508,8 +508,11 @@ H5_DLL herr_t H5F_block_write(const H5F_t *f, H5FD_mem_t type, haddr_t addr, /* Address-related functions */ H5_DLL void H5F_addr_encode(const H5F_t *, uint8_t** /*in,out*/, haddr_t); +H5_DLL void H5F_addr_encode_len(size_t addr_len, uint8_t** /*in,out*/, haddr_t); H5_DLL void H5F_addr_decode(const H5F_t *, const uint8_t** /*in,out*/, - haddr_t* /*out*/); + haddr_t* /*out*/); +H5_DLL void H5F_addr_decode_len(size_t addr_len, const uint8_t** /*in,out*/, + haddr_t* /*out*/); /* File access property list callbacks */ H5_DLL herr_t H5P_facc_close(hid_t dxpl_id, void *close_data); |