summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_private.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-04-25 06:12:46 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-04-25 06:12:46 (GMT)
commit6d912bf0b5c9613acaf216616b59ae1aec3f7e1f (patch)
tree5d02cdced179f440f6d2f34fee80867778f47e65 /src/H5VLnative_private.h
parentff0b56fa384345331cd16db7c12afa0966959084 (diff)
downloadhdf5-6d912bf0b5c9613acaf216616b59ae1aec3f7e1f.zip
hdf5-6d912bf0b5c9613acaf216616b59ae1aec3f7e1f.tar.gz
hdf5-6d912bf0b5c9613acaf216616b59ae1aec3f7e1f.tar.bz2
Refactor group creation parameters to take them out of the group creation
property list and pass them as normal function parameters.
Diffstat (limited to 'src/H5VLnative_private.h')
-rw-r--r--src/H5VLnative_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative_private.h b/src/H5VLnative_private.h
index 785da85..714b73c 100644
--- a/src/H5VLnative_private.h
+++ b/src/H5VLnative_private.h
@@ -52,7 +52,7 @@ H5_DLL herr_t H5VL__native_file_optional(void *file, hid_t dxpl_id, void **req,
H5_DLL herr_t H5VL__native_file_close(void *file, hid_t dxpl_id, void **req);
/* Group callbacks */
-H5_DLL void *H5VL__native_group_create(void *obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t gcpl_id, hid_t gapl_id, hid_t dxpl_id, void **req);
+H5_DLL void *H5VL__native_group_create(void *obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id, hid_t dxpl_id, void **req);
H5_DLL void *H5VL__native_group_open(void *obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t gapl_id, hid_t dxpl_id, void **req);
H5_DLL herr_t H5VL__native_group_get(void *obj, H5VL_group_get_t get_type, hid_t dxpl_id, void **req, va_list arguments);
H5_DLL herr_t H5VL__native_group_specific(void *obj, H5VL_group_specific_t specific_type, hid_t dxpl_id, void **req, va_list arguments);