summaryrefslogtreecommitdiffstats
path: root/src/H5Rprivate.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-11-08 01:56:27 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-11-08 01:56:27 (GMT)
commitd0e32b545c41dcc36a69ab146b54b55e7ac9dc07 (patch)
tree37b24e8b9ec321eb2585c0628ee9d8d0433962ff /src/H5Rprivate.h
parent86650b977c357441dec0b71530c5971503efaaff (diff)
downloadhdf5-d0e32b545c41dcc36a69ab146b54b55e7ac9dc07.zip
hdf5-d0e32b545c41dcc36a69ab146b54b55e7ac9dc07.tar.gz
hdf5-d0e32b545c41dcc36a69ab146b54b55e7ac9dc07.tar.bz2
Split internal H5R functionality into H5Rint.c.
Diffstat (limited to 'src/H5Rprivate.h')
-rw-r--r--src/H5Rprivate.h34
1 files changed, 32 insertions, 2 deletions
diff --git a/src/H5Rprivate.h b/src/H5Rprivate.h
index 7efa225..35e63d2 100644
--- a/src/H5Rprivate.h
+++ b/src/H5Rprivate.h
@@ -20,10 +20,40 @@
#include "H5Rpublic.h"
/* Private headers needed by this file */
+#include "H5Fprivate.h" /* Files */
+#include "H5Gprivate.h" /* Groups */
+#include "H5Oprivate.h" /* Object headers */
+#include "H5Sprivate.h" /* Dataspaces */
-/* Internal data structures */
-/* Private functions */
+/**************************/
+/* Library Private Macros */
+/**************************/
+
+
+/****************************/
+/* Library Private Typedefs */
+/****************************/
+
+
+/*****************************/
+/* Library Private Variables */
+/*****************************/
+
+
+/******************************/
+/* Library Private Prototypes */
+/******************************/
+
+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);
+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);
#endif /* _H5Rprivate_H */