diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-21 01:18:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-21 01:18:55 (GMT) |
commit | f6deaca1d4cca061273cd6daef0357200d4c6ea4 (patch) | |
tree | c3c79ba33c986d048bdfbf21c493a8b2206c6818 /src/H5Gpkg.h | |
parent | 51da322882c72fa1c9e5c173b6e60ec283f7b4a1 (diff) | |
download | hdf5-f6deaca1d4cca061273cd6daef0357200d4c6ea4.zip hdf5-f6deaca1d4cca061273cd6daef0357200d4c6ea4.tar.gz hdf5-f6deaca1d4cca061273cd6daef0357200d4c6ea4.tar.bz2 |
[svn-r12954] Description:
Initial refactoring to prepare for H5Oopen_by_idx() API support.
Tested on:
Linux/32 2.4 (chicago)
Linux/64 2.4 (chicago2)
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index b240fb0..411a8e7 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -434,6 +434,8 @@ H5_DLL herr_t H5G_ent_to_link(H5F_t *f, hid_t dxpl_id, H5O_link_t *lnk, H5_DLL herr_t H5G_ent_to_info(H5F_t *f, hid_t dxpl_id, H5L_info_t *info, haddr_t lheap_addr, const H5G_entry_t *ent); H5_DLL herr_t H5G_link_to_info(const H5O_link_t *lnk, H5L_info_t *linfo); +H5_DLL herr_t H5G_link_to_loc(const H5G_loc_t *grp_loc, const H5O_link_t *lnk, + H5G_loc_t *obj_loc); H5_DLL herr_t H5G_link_copy_file(H5F_t *dst_file, hid_t dxpl_id, const H5O_link_t *_src_lnk, const H5O_loc_t *src_oloc, H5O_link_t *dst_lnk, H5O_copy_t *cpy_info); @@ -529,7 +531,7 @@ H5_DLL H5RS_str_t *H5G_build_fullpath_refstr_str(H5RS_str_t *path_r, const char /* * These functions operate on group "locations" */ -H5_DLL herr_t H5G_loc_copy(H5G_loc_t *dst, H5G_loc_t *src, H5_copy_depth_t depth); +H5_DLL herr_t H5G_loc_copy(H5G_loc_t *dst, const H5G_loc_t *src, H5_copy_depth_t depth); H5_DLL herr_t H5G_loc_insert(H5G_loc_t *grp_loc, const char *name, H5G_loc_t *obj_loc, hid_t dxpl_id); |