diff options
Diffstat (limited to 'src/H5Gpublic.h')
-rw-r--r-- | src/H5Gpublic.h | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/H5Gpublic.h b/src/H5Gpublic.h index f2b9fbf..29272e5 100644 --- a/src/H5Gpublic.h +++ b/src/H5Gpublic.h @@ -70,21 +70,23 @@ typedef struct H5G_stat_t { typedef herr_t (*H5G_iterate_t)(hid_t group, const char *name, void *op_data); -__DLL__ hid_t H5Gcreate (hid_t loc_id, const char *name, size_t size_hint); -__DLL__ hid_t H5Gopen (hid_t loc_id, const char *name); -__DLL__ herr_t H5Gclose (hid_t group_id); -__DLL__ herr_t H5Giterate (hid_t loc_id, const char *name, int *idx, H5G_iterate_t op, - void *op_data); -__DLL__ herr_t H5Gmove (hid_t loc_id, const char *src, const char *dst); -__DLL__ herr_t H5Glink (hid_t loc_id, H5G_link_t type, const char *cur_name, - const char *new_name); -__DLL__ herr_t H5Gunlink (hid_t loc_id, const char *name); -__DLL__ herr_t H5Gget_objinfo (hid_t loc_id, const char *name, hbool_t follow_link, - H5G_stat_t *statbuf/*out*/); -__DLL__ herr_t H5Gget_linkval (hid_t loc_id, const char *name, size_t size, - char *buf/*out*/); -__DLL__ herr_t H5Gset_comment(hid_t loc_id, const char *name, const char *comment); -__DLL__ int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize, char *buf); +__DLL__ hid_t H5Gcreate(hid_t loc_id, const char *name, size_t size_hint); +__DLL__ hid_t H5Gopen(hid_t loc_id, const char *name); +__DLL__ herr_t H5Gclose(hid_t group_id); +__DLL__ herr_t H5Giterate(hid_t loc_id, const char *name, int *idx, + H5G_iterate_t op, void *op_data); +__DLL__ herr_t H5Gmove(hid_t loc_id, const char *src, const char *dst); +__DLL__ herr_t H5Glink(hid_t loc_id, H5G_link_t type, const char *cur_name, + const char *new_name); +__DLL__ herr_t H5Gunlink(hid_t loc_id, const char *name); +__DLL__ herr_t H5Gget_objinfo(hid_t loc_id, const char *name, + hbool_t follow_link, H5G_stat_t *statbuf/*out*/); +__DLL__ herr_t H5Gget_linkval(hid_t loc_id, const char *name, size_t size, + char *buf/*out*/); +__DLL__ herr_t H5Gset_comment(hid_t loc_id, const char *name, + const char *comment); +__DLL__ int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize, + char *buf); #ifdef __cplusplus } |