summaryrefslogtreecommitdiffstats
path: root/src/H5Rpkg.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-19 18:40:48 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-19 18:40:48 (GMT)
commita32f45dfda9daa8b72a44cda7f4f90072178d8be (patch)
tree9466c186dd0a6a62ca66e963de47b808bdca9bf2 /src/H5Rpkg.h
parentb7a6535650cd0317e3aee1bb62a96664b38e5304 (diff)
downloadhdf5-a32f45dfda9daa8b72a44cda7f4f90072178d8be.zip
hdf5-a32f45dfda9daa8b72a44cda7f4f90072178d8be.tar.gz
hdf5-a32f45dfda9daa8b72a44cda7f4f90072178d8be.tar.bz2
[svn-r22298] fix an error in H5Dget_offset
update the H5R routines to use the VOL
Diffstat (limited to 'src/H5Rpkg.h')
-rw-r--r--src/H5Rpkg.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/H5Rpkg.h b/src/H5Rpkg.h
index 8c66a90..23de6b6 100644
--- a/src/H5Rpkg.h
+++ b/src/H5Rpkg.h
@@ -33,6 +33,7 @@
/* Other private headers needed by this file */
#include "H5Fprivate.h" /* File access */
+#include "H5Sprivate.h" /* Dataspaces */
/**************************/
/* Package Private Macros */
@@ -59,7 +60,11 @@ H5_DLL herr_t H5R_get_obj_type(H5F_t *file, hid_t dxpl_id, H5R_type_t ref_type,
const void *_ref, H5O_type_t *obj_type);
H5_DLL hid_t H5R_dereference(H5F_t *file, hid_t dapl_id, hid_t dxpl_id, H5R_type_t ref_type,
const void *_ref, hbool_t app_ref);
-
+H5_DLL herr_t H5R_create(void *ref, H5G_loc_t *loc, const char *name,
+ H5R_type_t ref_type, H5S_t *space, hid_t dxpl_id);
+H5_DLL H5S_t * H5R_get_region(H5F_t *file, hid_t dxpl_id, const void *_ref);
+H5_DLL ssize_t H5R_get_name(H5F_t *file, hid_t lapl_id, hid_t dxpl_id, hid_t id,
+ H5R_type_t ref_type, const void *_ref, char *name, size_t size);
#endif /* _H5Rpkg_H */