summaryrefslogtreecommitdiffstats
path: root/src/H5Pprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r--src/H5Pprivate.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h
index 7cbb397..b74fcf9 100644
--- a/src/H5Pprivate.h
+++ b/src/H5Pprivate.h
@@ -92,22 +92,22 @@ typedef herr_t (*H5P_reg_prop_func_t)(H5P_genclass_t *pclass);
* class variables and methods used to initialize the class.
*/
typedef struct H5P_libclass_t {
- const char * name; /* Class name */
+ const char *name; /* Class name */
H5P_plist_type_t type; /* Class type */
- H5P_genclass_t ** par_pclass; /* Pointer to global parent class property list class */
- H5P_genclass_t ** pclass; /* Pointer to global property list class */
+ H5P_genclass_t **par_pclass; /* Pointer to global parent class property list class */
+ H5P_genclass_t **pclass; /* Pointer to global property list class */
hid_t *const class_id; /* Pointer to global property list class ID */
hid_t *const def_plist_id; /* Pointer to global default property list ID */
H5P_reg_prop_func_t reg_prop_func; /* Register class's properties */
/* Class 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 */
} H5P_libclass_t;
/*****************************/
@@ -176,7 +176,7 @@ H5_DLL herr_t H5P_insert(H5P_genplist_t *plist, const char *name, size_t size, v
H5_DLL herr_t H5P_remove(H5P_genplist_t *plist, const char *name);
H5_DLL htri_t H5P_exist_plist(const H5P_genplist_t *plist, const char *name);
H5_DLL htri_t H5P_class_isa(const H5P_genclass_t *pclass1, const H5P_genclass_t *pclass2);
-H5_DLL char * H5P_get_class_name(H5P_genclass_t *pclass);
+H5_DLL char *H5P_get_class_name(H5P_genclass_t *pclass);
/* Internal helper routines */
H5_DLL herr_t H5P_get_nprops_pclass(const H5P_genclass_t *pclass, size_t *nprops, hbool_t recurse);
@@ -203,11 +203,11 @@ H5_DLL herr_t H5P_get_filter_by_id(H5P_genplist_t *plist, H5Z_filter_t id, unsig
H5_DLL htri_t H5P_filter_in_pline(H5P_genplist_t *plist, H5Z_filter_t id);
/* Query internal fields of the property list struct */
-H5_DLL hid_t H5P_get_plist_id(const H5P_genplist_t *plist);
+H5_DLL hid_t H5P_get_plist_id(const H5P_genplist_t *plist);
H5_DLL H5P_genclass_t *H5P_get_class(const H5P_genplist_t *plist);
/* *SPECIAL* Don't make more of these! -QAK */
-H5_DLL htri_t H5P_isa_class(hid_t plist_id, hid_t pclass_id);
+H5_DLL htri_t H5P_isa_class(hid_t plist_id, hid_t pclass_id);
H5_DLL H5P_genplist_t *H5P_object_verify(hid_t plist_id, hid_t pclass_id);
/* Private DCPL routines */