diff options
Diffstat (limited to 'src/H5Rpkg.h')
-rw-r--r-- | src/H5Rpkg.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Rpkg.h b/src/H5Rpkg.h index 2048d39..08176ac 100644 --- a/src/H5Rpkg.h +++ b/src/H5Rpkg.h @@ -32,7 +32,8 @@ #include "H5Rprivate.h" /* Other private headers needed by this file */ -#include "H5Fprivate.h" /* File access */ +#include "H5Fprivate.h" /* File access */ +#include "H5Aprivate.h" /* Attributes */ /**************************/ /* Package Private Macros */ @@ -68,9 +69,10 @@ struct href_t { /* General functions */ H5_DLL herr_t H5R__get_obj_type(H5F_t *file, hid_t dxpl_id, href_t ref, H5O_type_t *obj_type); -H5_DLL hid_t H5R__dereference(H5F_t *file, hid_t dapl_id, hid_t dxpl_id, +H5_DLL hid_t H5R__get_object(H5F_t *file, hid_t dapl_id, hid_t dxpl_id, href_t ref, hbool_t app_ref); H5_DLL struct H5S_t *H5R__get_region(H5F_t *file, hid_t dxpl_id, href_t ref); +H5_DLL H5A_t *H5R__get_attr(H5F_t *file, hid_t dxpl_id, href_t ref); H5_DLL ssize_t H5R__get_obj_name(H5F_t *file, hid_t lapl_id, hid_t dxpl_id, hid_t id, href_t ref, char *name, size_t size); H5_DLL ssize_t H5R__get_attr_name(H5F_t *file, href_t ref, char *name, size_t size); |