diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 19:06:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 19:06:02 (GMT) |
commit | 3a5cb21f25fad7b48b10febcc9b2d295ddc93e48 (patch) | |
tree | a59d204c9ce3c3ed29ecef64ad935db26152c3e5 /src/H5Lprivate.h | |
parent | 2b635fee4da5b3c9e0340f0630b4e9b61616409b (diff) | |
download | hdf5-3a5cb21f25fad7b48b10febcc9b2d295ddc93e48.zip hdf5-3a5cb21f25fad7b48b10febcc9b2d295ddc93e48.tar.gz hdf5-3a5cb21f25fad7b48b10febcc9b2d295ddc93e48.tar.bz2 |
[svn-r12867] Description:
Get rid of H5L API calls from within deprecated H5G API calls.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'src/H5Lprivate.h')
-rw-r--r-- | src/H5Lprivate.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5Lprivate.h b/src/H5Lprivate.h index 2ce5e48..197287c 100644 --- a/src/H5Lprivate.h +++ b/src/H5Lprivate.h @@ -58,7 +58,15 @@ H5_DLL herr_t H5L_init(void); H5_DLL herr_t H5L_link(H5G_loc_t *new_loc, const char *new_name, H5G_loc_t *obj_loc, hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id); +H5_DLL herr_t H5L_create_hard(H5G_loc_t *cur_loc, const char *cur_name, + H5G_loc_t *link_loc, const char *link_name, hid_t lcpl_id, + hid_t lapl_id, hid_t dxpl_id); +H5_DLL herr_t H5L_create_soft(const char *target_path, H5G_loc_t *cur_loc, + const char *cur_name, hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id); H5_DLL hid_t H5L_get_default_lcpl(void); +H5_DLL herr_t H5L_move(H5G_loc_t *src_loc, const char *src_name, + H5G_loc_t *dst_loc, const char *dst_name, hbool_t copy_flag, + hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id); H5_DLL herr_t H5L_get_info(const H5G_loc_t *loc, const char *name, H5L_info_t *linkbuf/*out*/, hid_t lapl_id, hid_t dxpl_id); H5_DLL herr_t H5L_delete(H5G_loc_t *loc, const char *name, hid_t lapl_id, |