summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-02-20 18:45:47 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-02-20 18:45:47 (GMT)
commitd7147ff0eca5df777e2d9371aca7d1d98cbe45b4 (patch)
tree496b1c9be3327734653b7c7058add98eaaf782c7 /src/H5VLpublic.h
parent92d5cd3baf317573ed223d7fd373d8a8dc980547 (diff)
downloadhdf5-d7147ff0eca5df777e2d9371aca7d1d98cbe45b4.zip
hdf5-d7147ff0eca5df777e2d9371aca7d1d98cbe45b4.tar.gz
hdf5-d7147ff0eca5df777e2d9371aca7d1d98cbe45b4.tar.bz2
[svn-r21964] a working version that works with the entire test suite
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index 62407d9..bf77239 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -37,14 +37,15 @@ typedef struct H5VL_general_class_t {
/* H5F routines */
typedef struct H5VL_file_class_t {
- H5F_t *(*open) (const char *name, unsigned flags, hid_t fapl_id);
+ H5F_t *(*open) (const char *name, unsigned flags, hid_t fcpl_id,
+ hid_t fapl_id, hid_t dxpl_id);
herr_t (*close) (H5F_t *file);
- H5F_t *(*create) (const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
+ H5F_t *(*create) (const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
herr_t (*flush) (hid_t object_id, H5F_scope_t scope);
htri_t (*is_hdf5) (const char *name);
herr_t (*mount) (hid_t loc_id, const char *name, hid_t child_id, hid_t plist_id);
herr_t (*unmount) (hid_t loc_id, const char *name);
- hid_t (*reopen) (hid_t file_id);
+ hid_t (*reopen) (hid_t file_id);
} H5VL_file_class_t;
/* H5D routines */