diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 17:44:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 17:44:40 (GMT) |
commit | 32cd8f3fcf6ef1804a2818c84ad3ed92b26c887e (patch) | |
tree | 8f81cb8e5466a2a118f2afb3c5be7252c7eb3739 /src/H5Lprivate.h | |
parent | 5adf1ee1bab95cce501257e538b638a75c9e72fa (diff) | |
download | hdf5-32cd8f3fcf6ef1804a2818c84ad3ed92b26c887e.zip hdf5-32cd8f3fcf6ef1804a2818c84ad3ed92b26c887e.tar.gz hdf5-32cd8f3fcf6ef1804a2818c84ad3ed92b26c887e.tar.bz2 |
[svn-r12865] Description:
Change name of H5Lunlink to H5Ldelete, per our design meeting last Friday.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'src/H5Lprivate.h')
-rw-r--r-- | src/H5Lprivate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Lprivate.h b/src/H5Lprivate.h index d70835c..2ce5e48 100644 --- a/src/H5Lprivate.h +++ b/src/H5Lprivate.h @@ -23,8 +23,8 @@ #include "H5Lpublic.h" /* Private headers needed by this file */ -#include "H5Gprivate.h" -#include "H5Oprivate.h" +#include "H5Gprivate.h" /* Groups */ +#include "H5Oprivate.h" /* Object headers */ /**************************/ /* Library Private Macros */ @@ -61,6 +61,8 @@ H5_DLL herr_t H5L_link(H5G_loc_t *new_loc, const char *new_name, H5_DLL hid_t H5L_get_default_lcpl(void); 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, + hid_t dxpl_id); H5_DLL herr_t H5L_get_val(H5G_loc_t *loc, const char *name, size_t size, void *buf/*out*/, hid_t lapl_id, hid_t dxpl_id); H5_DLL herr_t H5L_register_external(void); |