diff options
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index fa67af4..61916f1 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -98,13 +98,13 @@ typedef struct { H5D_create_t dcreate; /* Dataset creation properties */ H5F_mprop_t mount; /* Mounting properties */ } u; - H5P_class_t cls; /* Property list class */ + H5P_class_t_old cls; /* Property list class */ } H5P_t; /* Private functions, not part of the publicly documented API */ __DLL__ herr_t H5P_init(void); -__DLL__ hid_t H5P_create(H5P_class_t type, H5P_t *plist); -__DLL__ void *H5P_copy(H5P_class_t type, const void *src); +__DLL__ hid_t H5P_create(H5P_class_t_old type, H5P_t *plist); +__DLL__ void *H5P_copy(H5P_class_t_old type, const void *src); __DLL__ herr_t H5P_close(void *plist); __DLL__ herr_t H5P_register(H5P_genclass_t *pclass, const char *name, size_t size, void *def_value, H5P_prp_create_func_t prp_create, H5P_prp_set_func_t prp_set, @@ -112,7 +112,7 @@ __DLL__ herr_t H5P_register(H5P_genclass_t *pclass, const char *name, size_t siz H5P_prp_copy_func_t prp_copy, H5P_prp_close_func_t prp_close); __DLL__ herr_t H5P_get(hid_t plist_id, const char *name, void *value); __DLL__ herr_t H5P_set(hid_t plist_id, const char *name, void *value); -__DLL__ H5P_class_t H5P_get_class(hid_t tid); +__DLL__ H5P_class_t_old H5P_get_class(hid_t tid); __DLL__ hid_t H5P_get_driver(hid_t plist_id); /* Private functions to "peek" at properties of a certain type */ |