summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-01-27 23:16:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-01-27 23:16:13 (GMT)
commite163a5f6ab2960bea08ef96347e597e07b8927e7 (patch)
treeb6af25a6ac239e373a488f29d0ad83fe1eb9f69b /src/H5Fprivate.h
parenta7673d2f91afd96faf60072dc80a533faa626593 (diff)
downloadhdf5-e163a5f6ab2960bea08ef96347e597e07b8927e7.zip
hdf5-e163a5f6ab2960bea08ef96347e597e07b8927e7.tar.gz
hdf5-e163a5f6ab2960bea08ef96347e597e07b8927e7.tar.bz2
[svn-r16368] Description:
Bring r16367 back from trunk: 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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index 26df262..4062505 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -507,8 +507,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);