summaryrefslogtreecommitdiffstats
path: root/src/H5VLprivate.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-12 15:55:55 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-12 15:55:55 (GMT)
commit3736cc2a1d41f96d740079cc8201f761961b582a (patch)
tree7799e6d9108bcb60027bc91fe7571fb68ab1d968 /src/H5VLprivate.h
parentf31fac3a23da12287384db7f6aa2937e9461d3fe (diff)
downloadhdf5-3736cc2a1d41f96d740079cc8201f761961b582a.zip
hdf5-3736cc2a1d41f96d740079cc8201f761961b582a.tar.gz
hdf5-3736cc2a1d41f96d740079cc8201f761961b582a.tar.bz2
[svn-r22456] change all usage of lookup/free VOL callback in H5G,O,A and use the loc_param struct instead.
update the native implementation
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r--src/H5VLprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h
index eeb4b3c..f3d2f46 100644
--- a/src/H5VLprivate.h
+++ b/src/H5VLprivate.h
@@ -54,7 +54,7 @@ H5_DLL hid_t H5VL_attr_open(hid_t loc_id, H5VL_loc_params_t loc_params, const ch
H5_DLL herr_t H5VL_attr_read(hid_t attr_id, hid_t dtype_id, void *buf, hid_t req);
H5_DLL herr_t H5VL_attr_write(hid_t attr_id, hid_t dtype_id, const void *buf, hid_t req);
H5_DLL herr_t H5VL_attr_get(hid_t id, H5VL_attr_get_t get_type, hid_t req, ...);
-H5_DLL herr_t H5VL_attr_remove(hid_t loc_id, void *location, const char *attr_name, hid_t req);
+H5_DLL herr_t H5VL_attr_remove(hid_t loc_id, H5VL_loc_params_t loc_params, const char *attr_name, hid_t req);
H5_DLL herr_t H5VL_attr_close(hid_t attr_id, hid_t req);
H5_DLL hid_t H5VL_dataset_create(hid_t uid, const char *name, hid_t dcpl_id, hid_t dapl_id, hid_t req);
@@ -92,7 +92,7 @@ H5_DLL herr_t H5VL_link_iterate(hid_t loc_id, const char *name, hbool_t recursiv
H5_DLL herr_t H5VL_link_get(hid_t loc_id, H5VL_link_get_t get_type, hid_t req, ...);
H5_DLL herr_t H5VL_link_remove(hid_t loc_id, const char *name, void *udata, hid_t lapl_id, hid_t req);
-H5_DLL hid_t H5VL_object_open(hid_t loc_id, H5VL_loc_params_t params, hid_t lapl_id, hid_t req);
+H5_DLL hid_t H5VL_object_open(hid_t loc_id, H5VL_loc_params_t params, hid_t req);
H5_DLL herr_t H5VL_object_copy(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id,
const char *dst_name, hid_t ocpypl_id, hid_t lcpl_id, hid_t req);
H5_DLL herr_t H5VL_object_visit(hid_t loc_id, const char *obj_name, H5_index_t idx_type,