diff options
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r-- | src/H5Apkg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h index 85be22e..11dd43d 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -122,7 +122,7 @@ typedef struct { } H5A_attr_table_t; /* Attribute iteration operator for internal library callbacks */ -typedef herr_t (*H5A_lib_iterate_t)(const H5A_t *attr, uint8_t mesg_flags, +typedef herr_t (*H5A_lib_iterate_t)(const H5A_t *attr, unsigned mesg_flags, void *op_data); /* Describe kind of callback to make for each attribute */ @@ -172,6 +172,8 @@ H5_DLL herr_t H5A_dense_iterate(H5F_t *f, hid_t dxpl_id, hid_t loc_id, unsigned *last_attr, const H5A_attr_iterate_t *attr_op, void *op_data); H5_DLL herr_t H5A_dense_remove(H5F_t *f, hid_t dxpl_id, const H5O_t *oh, const char *name); +H5_DLL htri_t H5A_dense_exists(H5F_t *f, hid_t dxpl_id, const H5O_t *oh, + const char *name); /* Attribute table operations */ H5_DLL herr_t H5A_dense_build_table(H5F_t *f, hid_t dxpl_id, const H5O_t *oh, |