diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-24 19:39:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-24 19:39:23 (GMT) |
commit | d0be7024289ccd82eb6545f61dd38861ec5d79ec (patch) | |
tree | 7317eb1eb65763f702f255fbb689c799d555f4d7 /src/H5FDprivate.h | |
parent | 9d22c9e61aaeb70fa03b0c3cea521edd79c95867 (diff) | |
download | hdf5-d0be7024289ccd82eb6545f61dd38861ec5d79ec.zip hdf5-d0be7024289ccd82eb6545f61dd38861ec5d79ec.tar.gz hdf5-d0be7024289ccd82eb6545f61dd38861ec5d79ec.tar.bz2 |
[svn-r7725] 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.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index 4f1785c..d522f63 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -45,10 +45,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); |