summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2007-06-11 22:27:07 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2007-06-11 22:27:07 (GMT)
commit3045853b76e84ab001c2076b36dcb31a1fab5aec (patch)
treeb3f9867281e0aea98daca1073b22cd1dbfdebff2 /src/H5FD.c
parente2cf0e5f62d3ae90e18a6e5576382ad8e542d06a (diff)
downloadhdf5-3045853b76e84ab001c2076b36dcb31a1fab5aec.zip
hdf5-3045853b76e84ab001c2076b36dcb31a1fab5aec.tar.gz
hdf5-3045853b76e84ab001c2076b36dcb31a1fab5aec.tar.bz2
[svn-r13852] Added includes in various places to make it possible to set windows as the default vfd. Although sec2 is still default on Windows, it should now be possible to switch by simply changing H5pubconf.h .
Tested: .NET 2003 on WinXP
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index 198757b..2a69e47 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -43,6 +43,7 @@
#include "H5FDmulti.h" /* Usage-partitioned file family */
#include "H5FDsec2.h" /* POSIX unbuffered file I/O */
#include "H5FDstdio.h" /* Standard C buffered I/O */
+#include "H5FDwindows.h" /* Windows buffered I/O */
#include "H5FDstream.h" /* In-memory files streamed via sockets */
#include "H5FDdirect.h" /* Direct file I/O */
#include "H5FLprivate.h" /* Free lists */
@@ -169,6 +170,9 @@ H5FD_term_interface(void)
#endif
H5FD_log_term();
H5FD_stdio_term();
+#ifdef H5_HAVE_WINDOWS
+ H5FD_windows_term();
+#endif
H5FD_family_term();
H5FD_core_term();
H5FD_multi_term();