diff options
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index ac5ba2d..53dc8ad 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -381,9 +381,8 @@ H5_DLL herr_t H5F_init(void); H5_DLL hid_t H5F_get_driver_id(const H5F_t *f); H5_DLL unsigned H5F_get_intent(const H5F_t *f); H5_DLL herr_t H5F_get_fileno(const H5F_t *f, unsigned long *filenum); -H5_DLL herr_t H5F_get_obj_count(H5F_t *f, unsigned types, - unsigned *obj_id_count); -H5_DLL herr_t H5F_get_obj_ids(H5F_t *f, unsigned types, hid_t *obj_id_list); +H5_DLL int H5F_get_obj_count(H5F_t *f, unsigned types); +H5_DLL int H5F_get_obj_ids(H5F_t *f, unsigned types, int max_objs, hid_t *obj_id_list); H5_DLL haddr_t H5F_get_base_addr(const H5F_t *f); /* Functions than check file mounting information */ |