summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 19:31:38 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 19:31:38 (GMT)
commit053ae6e11ee81b9ede8469dc906c1fa4c70d6228 (patch)
treef8c44ca96d5fc45cfa9a61577e91da78a6308caf /src/H5VLpublic.h
parent77a3e8e5c9401e2c7872d850d8d03a1947775f29 (diff)
downloadhdf5-053ae6e11ee81b9ede8469dc906c1fa4c70d6228.zip
hdf5-053ae6e11ee81b9ede8469dc906c1fa4c70d6228.tar.gz
hdf5-053ae6e11ee81b9ede8469dc906c1fa4c70d6228.tar.bz2
[svn-r22123] update the VOL GET callbacks to use var_args instead of argc & argv
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index b374d78..06201cb 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -69,7 +69,7 @@ typedef struct H5VL_file_class_t {
herr_t (*close) (hid_t file_id);
hid_t (*create)(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
herr_t (*flush) (hid_t file_id, H5F_scope_t scope);
- herr_t (*get) (hid_t file_id, H5VL_file_get_t get_type, void *data, int argc, void **argv);
+ herr_t (*get) (hid_t file_id, H5VL_file_get_t get_type, int num_args, va_list arguments);
} H5VL_file_class_t;
/* H5D routines */
@@ -120,7 +120,7 @@ typedef struct H5VL_group_class_t {
hid_t (*create)(hid_t loc_id, const char *name, hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id);
hid_t (*open) (hid_t loc_id, const char *name, hid_t gapl_id);
herr_t (*close) (hid_t group_id);
- herr_t (*get) (hid_t file_id, H5VL_group_get_t get_type, void *data, int argc, void **argv);
+ herr_t (*get) (hid_t file_id, H5VL_group_get_t get_type, int num_args, va_list arguments);
} H5VL_group_class_t;
/* H5O routines */
@@ -131,8 +131,8 @@ typedef struct H5VL_object_class_t {
const char *dest_name, hid_t lcpl, hid_t lapl);
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 );
- herr_t (*lookup)(hid_t loc_id, H5VL_object_lookup_t lookup_type, void **location, int argc, void **argv);
- herr_t (*get) (hid_t loc_id, H5VL_object_get_t get_type, void *data, int argc, void **argv);
+ herr_t (*lookup)(hid_t loc_id, H5VL_object_lookup_t lookup_type, int num_args, va_list arguments);
+ herr_t (*get) (hid_t loc_id, H5VL_object_get_t get_type, int num_args, va_list arguments);
} H5VL_object_class_t;
/* Class information for each VOL driver */