summaryrefslogtreecommitdiffstats
path: root/src/H5FDpublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-05-24 13:41:26 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-05-24 13:41:26 (GMT)
commit479f326a267ca5ffacc2012f33674c66cf2907d8 (patch)
tree19d03323c3ceb6e6b9e4da5e3529aeec74992974 /src/H5FDpublic.h
parente5a57c97aa43d6c76d1bb1fe64d24aaa0bbbb7d3 (diff)
downloadhdf5-479f326a267ca5ffacc2012f33674c66cf2907d8.zip
hdf5-479f326a267ca5ffacc2012f33674c66cf2907d8.tar.gz
hdf5-479f326a267ca5ffacc2012f33674c66cf2907d8.tar.bz2
* Added new public H5FDdriver_query() API call.
* Changed return type of H5FD_driver_query() to herr_t. * Updated swmr.c to use H5FDdriver_query() instead of the private call. * Added some flags tests to vfd.c.
Diffstat (limited to 'src/H5FDpublic.h')
-rw-r--r--src/H5FDpublic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5FDpublic.h b/src/H5FDpublic.h
index 45b1237..514d1bf 100644
--- a/src/H5FDpublic.h
+++ b/src/H5FDpublic.h
@@ -384,6 +384,9 @@ H5_DLL herr_t H5FDtruncate(H5FD_t *file, hid_t dxpl_id, hbool_t closing);
H5_DLL herr_t H5FDlock(H5FD_t *file, hbool_t rw);
H5_DLL herr_t H5FDunlock(H5FD_t *file);
+/* Allows querying a VFD ID for features before the file is opened */
+H5_DLL herr_t H5FDdriver_query(hid_t driver_id, unsigned long *flags/*out*/);
+
#ifdef __cplusplus
}
#endif