diff options
Diffstat (limited to 'src/H5Gprivate.h')
-rw-r--r-- | src/H5Gprivate.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/H5Gprivate.h b/src/H5Gprivate.h index 61ddee4..ec83f3f 100644 --- a/src/H5Gprivate.h +++ b/src/H5Gprivate.h @@ -62,6 +62,13 @@ 4 + /*reserved */ \ H5G_SIZEOF_SCRATCH) /*scratch pad space */ +/* ========= group Creation properties ============ */ + +/* Definitions for creating intermediate groups */ +#define H5G_CRT_INTERMEDIATE_GROUP_NAME "intermediate_group" +#define H5G_CRT_INTERMEDIATE_GROUP_SIZE sizeof(unsigned) +#define H5G_CRT_INTERMEDIATE_GROUP_DEF 0 + /* * Various types of object header information can be cached in a symbol * table entry (it's normal home is the object header to which the entry @@ -132,6 +139,9 @@ typedef enum { H5G_COPY_DEEP /* Deep copy from source to destination, including duplicating name & old name fields */ } H5G_ent_copy_depth_t; +/* Forward declarations for prototype arguments */ +struct H5P_genplist_t; + /* * Library prototypes... These are the ones that other packages routinely * call. @@ -148,7 +158,7 @@ H5_DLL herr_t H5G_get_objinfo(H5G_entry_t *loc, const char *name, hbool_t follow_link, H5G_stat_t *statbuf/*out*/, hid_t dxpl_id); H5_DLL herr_t H5G_insert(H5G_entry_t *loc, const char *name, - H5G_entry_t *ent, hid_t dxpl_id); + H5G_entry_t *ent, hid_t dxpl_id, struct H5P_genplist_t *oc_plist); H5_DLL herr_t H5G_find(H5G_entry_t *loc, const char *name, H5G_entry_t *grp_ent/*out*/, H5G_entry_t *ent/*out*/, hid_t dxpl_id); H5_DLL H5F_t *H5G_insertion_file(H5G_entry_t *loc, const char *name, hid_t dxpl_id); |