summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.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/H5VLpublic.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/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index 4e433e5..2746dfc 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -165,7 +165,7 @@ struct H5VL_loc_by_id {
struct H5VL_loc_by_name {
const char *name;
- hid_t lapl_id;
+ hid_t plist_id;
};
struct H5VL_loc_by_idx {
@@ -173,7 +173,7 @@ struct H5VL_loc_by_idx {
H5_index_t idx_type;
H5_iter_order_t order;
hsize_t n;
- hid_t lapl_id;
+ hid_t plist_id;
};
struct H5VL_loc_by_addr {
@@ -183,6 +183,7 @@ struct H5VL_loc_by_addr {
struct H5VL_loc_by_ref {
H5R_type_t ref_type;
const void *_ref;
+ hid_t plist_id;
};
/* Structure to hold parameters for object location */
@@ -206,7 +207,7 @@ typedef struct H5VL_attr_class_t {
herr_t (*read) (hid_t attr_id, hid_t mem_type_id, void *buf, hid_t req);
herr_t (*write) (hid_t attr_id, hid_t mem_type_id, const void *buf, hid_t req);
herr_t (*get) (hid_t loc_id, H5VL_attr_get_t get_type, hid_t req, va_list arguments);
- herr_t (*remove)(hid_t loc_id, void *location, const char *attr_name, hid_t req);
+ herr_t (*remove)(hid_t loc_id, H5VL_loc_params_t loc_params, const char *attr_name, hid_t req);
herr_t (*close) (hid_t attr_id, hid_t req);
} H5VL_attr_class_t;
@@ -265,7 +266,7 @@ typedef struct H5VL_link_class_t {
/* H5O routines */
typedef struct H5VL_object_class_t {
- hid_t (*open) (hid_t id, H5VL_loc_params_t params, hid_t lapl_id, hid_t req);
+ hid_t (*open) (hid_t id, H5VL_loc_params_t params, hid_t req);
herr_t (*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);
herr_t (*visit) (hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order,