diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-09-30 16:31:55 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-09-30 16:31:55 (GMT) |
commit | d1e26ae3280320dcc7cd286b4ef77be552bfc244 (patch) | |
tree | b0b85f9e029956209be19e9b28f342a59294c260 /src/H5Ppublic.h | |
parent | 4cfb158c292f7707a8a87edfd4b525c6ad7bb4b8 (diff) | |
download | hdf5-d1e26ae3280320dcc7cd286b4ef77be552bfc244.zip hdf5-d1e26ae3280320dcc7cd286b4ef77be552bfc244.tar.gz hdf5-d1e26ae3280320dcc7cd286b4ef77be552bfc244.tar.bz2 |
[svn-r5951]
Purpose:
New API functions
Description:
Added API functions to return pointer to low-level file handle
(H5Fget_vfd_handle and H5FDget_vfd_handle) and related property list
setting functions(H5Pset_family_offset and H5Pset_multi_type).
Platforms tested:
Linux 2.2(eirene), Solaris 2.7(arabica), IRIX64 6.5(modi4)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index f09356d..07cbec2 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -25,6 +25,7 @@ #include "H5Ipublic.h" #include "H5Dpublic.h" #include "H5Fpublic.h" +#include "H5FDpublic.h" #include "H5MMpublic.h" #include "H5Zpublic.h" @@ -179,6 +180,10 @@ H5_DLL herr_t H5Pset_driver(hid_t plist_id, hid_t driver_id, const void *driver_info); H5_DLL hid_t H5Pget_driver(hid_t plist_id); H5_DLL void *H5Pget_driver_info(hid_t plist_id); +H5_DLL herr_t H5Pset_family_offset(hid_t fapl_id, hsize_t offset); +H5_DLL herr_t H5Pget_family_offset(hid_t fapl_id, hsize_t *offset); +H5_DLL herr_t H5Pset_multi_type(hid_t fapl_id, H5FD_mem_t type); +H5_DLL herr_t H5Pget_multi_type(hid_t fapl_id, H5FD_mem_t *type); #ifdef H5_WANT_H5_V1_4_COMPAT H5_DLL herr_t H5Pset_buffer(hid_t plist_id, hsize_t size, void *tconv, void *bkg); |