summaryrefslogtreecommitdiffstats
path: root/src/H5FDprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-10-24 19:40:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-10-24 19:40:23 (GMT)
commita510f4e8a24efcbdef7b93e5934bc0e2c965a3fe (patch)
tree2802f085a4e5ffd8bebd78f01d35b64bd13f6c00 /src/H5FDprivate.h
parent8624dff4d9f84dd22bb8f05e01dbb46a1497de3d (diff)
downloadhdf5-a510f4e8a24efcbdef7b93e5934bc0e2c965a3fe.zip
hdf5-a510f4e8a24efcbdef7b93e5934bc0e2c965a3fe.tar.gz
hdf5-a510f4e8a24efcbdef7b93e5934bc0e2c965a3fe.tar.bz2
[svn-r7726] Purpose:
Code cleanup Description: Refactored handlier of VFL drivers in file access and data transfer property lists in order to simplify and unify the code dealing with them. Platforms tested: FreeBSD 4.9 (sleipnir) too minor to require h5committest
Diffstat (limited to 'src/H5FDprivate.h')
-rw-r--r--src/H5FDprivate.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h
index d02ba35..a53bbd3 100644
--- a/src/H5FDprivate.h
+++ b/src/H5FDprivate.h
@@ -27,10 +27,12 @@ H5_DLL hsize_t H5FD_sb_size(H5FD_t *file);
H5_DLL herr_t H5FD_sb_encode(H5FD_t *file, char *name/*out*/, uint8_t *buf);
H5_DLL herr_t H5FD_sb_decode(H5FD_t *file, const char *name, const uint8_t *buf);
H5_DLL void *H5FD_fapl_get(H5FD_t *file);
-H5_DLL void *H5FD_fapl_copy(hid_t driver_id, const void *fapl);
-H5_DLL herr_t H5FD_fapl_free(hid_t driver_id, void *fapl);
+H5_DLL herr_t H5FD_fapl_open(struct H5P_genplist_t *plist, hid_t driver_id, void *driver_info);
+H5_DLL herr_t H5FD_fapl_copy(hid_t driver_id, const void *fapl, void **copied_fapl);
+H5_DLL herr_t H5FD_fapl_close(hid_t driver_id, void *fapl);
+H5_DLL herr_t H5FD_dxpl_open(struct H5P_genplist_t *plist, hid_t driver_id, void *driver_info);
H5_DLL herr_t H5FD_dxpl_copy(hid_t driver_id, const void *dxpl, void **copied_dxpl);
-H5_DLL herr_t H5FD_dxpl_free(hid_t driver_id, void *dxpl);
+H5_DLL herr_t H5FD_dxpl_close(hid_t driver_id, void *dxpl);
H5_DLL H5FD_t *H5FD_open(const char *name, unsigned flags, hid_t fapl_id,
haddr_t maxaddr);
H5_DLL herr_t H5FD_close(H5FD_t *file);