summaryrefslogtreecommitdiffstats
path: root/src/H5VLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-04-25 03:31:36 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-04-25 03:31:36 (GMT)
commit0ca6b1305f4a882f760bdf71e6df383e31136e1e (patch)
tree27201ffdaba5d1fa40d0bdfe413bc631771a6b95 /src/H5VLprivate.h
parent4fbe80acc27bc0e84eec9880c3c4257802e5bae5 (diff)
downloadhdf5-0ca6b1305f4a882f760bdf71e6df383e31136e1e.zip
hdf5-0ca6b1305f4a882f760bdf71e6df383e31136e1e.tar.gz
hdf5-0ca6b1305f4a882f760bdf71e6df383e31136e1e.tar.bz2
Refactor dataset creation parameters out of the dataset creation property
list and pass them as regular function parameters.
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r--src/H5VLprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h
index 04cc982..5a5229e 100644
--- a/src/H5VLprivate.h
+++ b/src/H5VLprivate.h
@@ -137,7 +137,7 @@ H5_DLL herr_t H5VL_attr_optional(const H5VL_object_t *vol_obj, hid_t dxpl_id, vo
H5_DLL herr_t H5VL_attr_close(const H5VL_object_t *vol_obj, hid_t dxpl_id, void **req);
/* Dataset functions */
-H5_DLL void *H5VL_dataset_create(const H5VL_object_t *vol_obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t dcpl_id, hid_t dapl_id, hid_t dxpl_id, void **req);
+H5_DLL void *H5VL_dataset_create(const H5VL_object_t *vol_obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t lcpl_id, hid_t type_id, hid_t space_id, hid_t dcpl_id, hid_t dapl_id, hid_t dxpl_id, void **req);
H5_DLL void *H5VL_dataset_open(const H5VL_object_t *vol_obj, const H5VL_loc_params_t *loc_params, const char *name, hid_t dapl_id, hid_t dxpl_id, void **req);
H5_DLL herr_t H5VL_dataset_read(const H5VL_object_t *vol_obj, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, void *buf, void **req);
H5_DLL herr_t H5VL_dataset_write(const H5VL_object_t *vol_obj, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, const void *buf, void **req);