summaryrefslogtreecommitdiffstats
path: root/src/H5VLprivate.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-29 20:06:05 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-29 20:06:05 (GMT)
commit668df7889cdb78ddf5c05ba6846794991d1ed826 (patch)
tree6bfc490af8fd64cd8ff12def5425d1397e6ae610 /src/H5VLprivate.h
parent3d32d25d8fe666bddff0717dd67952f2602d80ab (diff)
downloadhdf5-668df7889cdb78ddf5c05ba6846794991d1ed826.zip
hdf5-668df7889cdb78ddf5c05ba6846794991d1ed826.tar.gz
hdf5-668df7889cdb78ddf5c05ba6846794991d1ed826.tar.bz2
[svn-r22194] - fix bug in set_vol_fapl to fix case when a vol is set explicitly by the user
- remove the num_args parameter from the VOL GET callbacks
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r--src/H5VLprivate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h
index 6e86b7c..f3bce81 100644
--- a/src/H5VLprivate.h
+++ b/src/H5VLprivate.h
@@ -59,7 +59,7 @@ H5_DLL hid_t H5VL_file_open(const char *name, unsigned flags, hid_t fapl_id);
H5_DLL hid_t H5VL_file_create(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
H5_DLL herr_t H5VL_file_close(hid_t file_id);
H5_DLL herr_t H5VL_file_flush(hid_t file_id, H5F_scope_t scope);
-H5_DLL herr_t H5VL_file_get(hid_t uid, H5VL_file_get_t get_type, int num_args, ...);
+H5_DLL herr_t H5VL_file_get(hid_t uid, H5VL_file_get_t get_type, ...);
H5_DLL hid_t H5VL_dataset_create(hid_t uid, const char *name, hid_t dtype_id, hid_t space_id, hid_t lcpl_id, hid_t dcpl_id, hid_t dapl_id);
H5_DLL hid_t H5VL_dataset_open(hid_t uid, const char *name, hid_t dapl_id);
@@ -67,7 +67,7 @@ H5_DLL herr_t H5VL_dataset_close(hid_t uid);
H5_DLL herr_t H5VL_dataset_read(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, void *buf);
H5_DLL herr_t H5VL_dataset_write(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, const void *buf);
H5_DLL herr_t H5VL_dataset_set_extent(hid_t uid, const hsize_t size[]);
-H5_DLL herr_t H5VL_dataset_get(hid_t uid, H5VL_dataset_get_t get_type, int num_args, ...);
+H5_DLL herr_t H5VL_dataset_get(hid_t uid, H5VL_dataset_get_t get_type, ...);
H5_DLL herr_t H5VL_datatype_commit(hid_t loc_id, const char *name, hid_t type_id, hid_t lcpl_id, hid_t tcpl_id, hid_t tapl_id);
H5_DLL hid_t H5VL_datatype_open(hid_t loc_id, const char *name, hid_t tapl_id);
@@ -75,12 +75,12 @@ H5_DLL hid_t H5VL_datatype_open(hid_t loc_id, const char *name, hid_t tapl_id);
H5_DLL hid_t H5VL_group_create(hid_t uid, const char *name, hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id);
H5_DLL hid_t H5VL_group_open(hid_t uid, const char *name, hid_t gapl_id);
H5_DLL herr_t H5VL_group_close(hid_t uid);
-H5_DLL herr_t H5VL_group_get(hid_t uid, H5VL_group_get_t get_type, int num_args, ...);
+H5_DLL herr_t H5VL_group_get(hid_t uid, H5VL_group_get_t get_type, ...);
H5_DLL hid_t H5VL_object_open(hid_t uid, void *obj_loc, hid_t lapl_id);
H5_DLL herr_t H5VL_object_close(hid_t uid);
-H5_DLL herr_t H5VL_object_get(hid_t uid, H5VL_object_get_t get_type, int num_args, ...);
-H5_DLL herr_t H5VL_object_lookup(hid_t uid, H5VL_object_lookup_t lookup_type, int num_args, ...);
+H5_DLL herr_t H5VL_object_get(hid_t uid, H5VL_object_get_t get_type, ...);
+H5_DLL herr_t H5VL_object_lookup(hid_t uid, H5VL_object_lookup_t lookup_type, ...);
H5_DLL herr_t H5VL_fapl_open(struct H5P_genplist_t *plist, H5VL_class_t *vol_cls);
H5_DLL herr_t H5VL_fapl_close(H5VL_class_t *vol_cls);