summaryrefslogtreecommitdiffstats
path: root/src/H5Ppkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Ppkg.h')
-rw-r--r--src/H5Ppkg.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/H5Ppkg.h b/src/H5Ppkg.h
index 2946931..0723e34 100644
--- a/src/H5Ppkg.h
+++ b/src/H5Ppkg.h
@@ -62,9 +62,9 @@ typedef enum {
/* Define structure to hold property information */
typedef struct H5P_genprop_t {
/* Values for this property */
- char * name; /* Name of property */
+ char *name; /* Name of property */
size_t size; /* Size of property value */
- void * value; /* Pointer to property value */
+ void *value; /* Pointer to property value */
H5P_prop_within_t type; /* Type of object the property is within */
hbool_t shared_name; /* Whether the name is shared or not */
@@ -83,25 +83,25 @@ typedef struct H5P_genprop_t {
/* Define structure to hold class information */
struct H5P_genclass_t {
struct H5P_genclass_t *parent; /* Pointer to parent class */
- char * name; /* Name of property list class */
+ char *name; /* Name of property list class */
H5P_plist_type_t type; /* Type of property */
size_t nprops; /* Number of properties in class */
unsigned
- plists; /* Number of property lists that have been created since the last modification to the class */
+ plists; /* Number of property lists that have been created since the last modification to the class */
unsigned classes; /* Number of classes that have been derived since the last modification to the class */
unsigned ref_count; /* Number of outstanding ID's open on this class object */
hbool_t deleted; /* Whether this class has been deleted and is waiting for dependent classes & proplists
to close */
unsigned revision; /* Revision number of a particular class (global) */
- H5SL_t * props; /* Skip list containing properties */
+ H5SL_t *props; /* Skip list containing properties */
/* Callback function pointers & info */
H5P_cls_create_func_t create_func; /* Function to call when a property list is created */
- void * create_data; /* Pointer to user data to pass along to create callback */
+ void *create_data; /* Pointer to user data to pass along to create callback */
H5P_cls_copy_func_t copy_func; /* Function to call when a property list is copied */
- void * copy_data; /* Pointer to user data to pass along to copy callback */
+ void *copy_data; /* Pointer to user data to pass along to copy callback */
H5P_cls_close_func_t close_func; /* Function to call when a property list is closed */
- void * close_data; /* Pointer to user data to pass along to close callback */
+ void *close_data; /* Pointer to user data to pass along to close callback */
};
/* Define structure to hold property list information */
@@ -110,8 +110,8 @@ struct H5P_genplist_t {
hid_t plist_id; /* Copy of the property list ID (for use in close callback) */
size_t nprops; /* Number of properties in class */
hbool_t class_init; /* Whether the class initialization callback finished successfully */
- H5SL_t * del; /* Skip list containing names of deleted properties */
- H5SL_t * props; /* Skip list containing properties */
+ H5SL_t *del; /* Skip list containing names of deleted properties */
+ H5SL_t *props; /* Skip list containing properties */
};
/* Property list/class iterator callback function pointer */
@@ -163,12 +163,12 @@ H5_DLL int H5P__iterate_pclass(const H5P_genclass_t *pclass, int *idx, H5P_it
H5_DLL herr_t H5P__copy_prop_plist(hid_t dst_id, hid_t src_id, const char *name);
H5_DLL herr_t H5P__copy_prop_pclass(hid_t dst_id, hid_t src_id, const char *name);
H5_DLL herr_t H5P__unregister(H5P_genclass_t *pclass, const char *name);
-H5_DLL char * H5P__get_class_path(H5P_genclass_t *pclass);
+H5_DLL char *H5P__get_class_path(H5P_genclass_t *pclass);
H5_DLL H5P_genclass_t *H5P__open_class_path(const char *path);
H5_DLL H5P_genclass_t *H5P__get_class_parent(const H5P_genclass_t *pclass);
H5_DLL herr_t H5P__close_class(H5P_genclass_t *pclass);
-H5_DLL H5P_genprop_t *H5P__find_prop_plist(const H5P_genplist_t *plist, const char *name);
-H5_DLL hid_t H5P__new_plist_of_type(H5P_plist_type_t type);
+H5_DLL H5P_genprop_t *H5P__find_prop_plist(const H5P_genplist_t *plist, const char *name);
+H5_DLL hid_t H5P__new_plist_of_type(H5P_plist_type_t type);
/* Encode/decode routines */
H5_DLL herr_t H5P__encode(const H5P_genplist_t *plist, hbool_t enc_all_prop, void *buf, size_t *nalloc);