summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-11 22:09:30 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-11 22:09:30 (GMT)
commit1f15e6e9d482396e47df6785b161229e7efa1d80 (patch)
tree7c1cad2c4ca3cd80d0f84cea950e26f2aa3e91eb /src/H5VLpublic.h
parentf70f5b17403c20bef94e4c43bdf86e7fd4b88ec8 (diff)
downloadhdf5-1f15e6e9d482396e47df6785b161229e7efa1d80.zip
hdf5-1f15e6e9d482396e47df6785b161229e7efa1d80.tar.gz
hdf5-1f15e6e9d482396e47df6785b161229e7efa1d80.tar.bz2
[svn-r22279] implement the attribute delete VOL callback
use the VOL get_space instead of the API routine in vlen_get_size
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index 683b7d7..fc57733 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -116,9 +116,9 @@ typedef struct H5VL_attr_class_t {
hid_t (*open) (hid_t loc_id, void *location, const char *attr_name, hid_t aapl_id);
herr_t (*read) (hid_t attr_id, hid_t mem_type_id, void *buf);
herr_t (*write) (hid_t attr_id, hid_t mem_type_id, const void *buf);
- herr_t (*delete)(hid_t loc_id, const char *attr_name);
herr_t (*get) (hid_t file_id, H5VL_attr_get_t get_type, va_list arguments);
herr_t (*generic)(hid_t id, H5VL_attr_generic_t generic_type, va_list arguments);
+ herr_t (*delete)(hid_t loc_id, void *location, const char *attr_name);
herr_t (*close) (hid_t attr_id);
} H5VL_attr_class_t;