summaryrefslogtreecommitdiffstats
path: root/src/H5Rprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Rprivate.h')
-rw-r--r--src/H5Rprivate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Rprivate.h b/src/H5Rprivate.h
index c4b8471..39c7135 100644
--- a/src/H5Rprivate.h
+++ b/src/H5Rprivate.h
@@ -16,12 +16,13 @@
typedef struct H5R_t H5R_t;
herr_t H5R_close(H5R_t *ra);
-H5R_t *H5R_create(H5G_t *loc, const char *name, H5T_t *type,
+H5R_t *H5R_create(H5G_entry_t *loc, const char *name, H5T_t *type,
const H5D_create_t *dcpl);
-H5R_t *H5R_open(H5G_t *loc, const char *name);
+H5R_t *H5R_open(H5G_entry_t *loc, const char *name);
herr_t H5R_write(H5R_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type,
hsize_t size[], void *buf[]);
herr_t H5R_read(H5R_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type,
hsize_t size[], void *buf[]);
+H5G_entry_t *H5R_entof(H5R_t *ra);
#endif