diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-29 23:37:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-29 23:37:41 (GMT) |
commit | 71d6bffdd745c865e988b29fac8d0173d7fa0131 (patch) | |
tree | 30e3ef0aece889d65fac25b0b038f6b7cc965497 /src/H5Gpublic.h | |
parent | db3c155bf296fa06ab0df56bb7307f2ba19613e5 (diff) | |
download | hdf5-71d6bffdd745c865e988b29fac8d0173d7fa0131.zip hdf5-71d6bffdd745c865e988b29fac8d0173d7fa0131.tar.gz hdf5-71d6bffdd745c865e988b29fac8d0173d7fa0131.tar.bz2 |
[svn-r14127] Description:
Move H5Gget_linkval to deprecated symbol section and replace with
H5Lget_val for internal calls.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Linux/64 2.6 (smirom)
Solaris/32 5.10 (linew)
Mac OS X/32 10.4.10 (amazon)
Diffstat (limited to 'src/H5Gpublic.h')
-rw-r--r-- | src/H5Gpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gpublic.h b/src/H5Gpublic.h index 4e2e262..e0133c5 100644 --- a/src/H5Gpublic.h +++ b/src/H5Gpublic.h @@ -137,8 +137,6 @@ H5_DLL herr_t H5Gclose(hid_t group_id); * * Use of these functions and variables is deprecated. */ -H5_DLL herr_t H5Gget_linkval(hid_t loc_id, const char *name, size_t size, - char *buf/*out*/); H5_DLL ssize_t H5Gget_objname_by_idx(hid_t loc_id, hsize_t idx, char* name, size_t size); H5_DLL herr_t H5Gset_comment(hid_t loc_id, const char *name, const char *comment); @@ -170,6 +168,8 @@ H5_DLL herr_t H5Gmove(hid_t src_loc_id, const char *src_name, H5_DLL herr_t H5Gmove2(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, const char *dst_name); H5_DLL herr_t H5Gunlink(hid_t loc_id, const char *name); +H5_DLL herr_t H5Gget_linkval(hid_t loc_id, const char *name, size_t size, + char *buf/*out*/); #endif /* H5_NO_DEPRECATED_SYMBOLS */ |