[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
This commit is contained in:
Scott Wegner 2007-06-11 17:27:07 -05:00
parent e2cf0e5f62
commit 3045853b76
9 changed files with 18 additions and 5 deletions

View File

@ -507,6 +507,8 @@
./src/H5FDstdio.h
./src/H5FDstream.c
./src/H5FDstream.h
./src/H5FDwindows.c
./src/H5FDwindows.h
./src/H5FL.c
./src/H5FLprivate.h
./src/H5FO.c
@ -1743,8 +1745,6 @@
#windows src
./windows/src/H5pubconf.h
./windows/src/H5Tinit.c
./windows/src/H5FDwindows.c
./windows/src/H5FDwindows.h
#windows test
./windows/test/big/big.dsp

View File

@ -41,6 +41,7 @@
#include "H5FDmulti.h" /*multiple files partitioned by mem usage */
#include "H5FDsec2.h" /*Posix unbuffered 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" /*Linux direct I/O */

View File

@ -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();

View File

@ -41,8 +41,10 @@
#include "H5Iprivate.h" /* IDs */
#include "H5Ppkg.h" /* Property lists */
/* Default file driver - see H5Pget_driver() */
/* Includes needed to set as default file driver */
#include "H5FDsec2.h" /* Posix unbuffered I/O file driver */
#include "H5FDstdio.h" /* Standard C buffered I/O */
#include "H5FDwindows.h" /* Windows buffered I/O */
/****************/

View File

@ -47,6 +47,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" /* Linux direct I/O */

View File

@ -20,8 +20,6 @@
copy src\H5Tinit.c ..\src
copy src\H5pubconf.h ..\src
copy src\H5FDwindows.c ..\src
copy src\H5FDwindows.h ..\src
copy fortran\src\H5f90i_gen.h ..\fortran\src
copy fortran\src\H5fortran_types.f90 ..\fortran\src
xcopy /e/i/Y *.bat ..\

View File

@ -118,6 +118,13 @@ in the file file_io.win32.c and including it on the projects
#define H5_HAVE_SZLIB_H 1
#define H5_HAVE_FILTER_SZIP 1
/* comment the following line out if you don't want to build the windows file
driver */
#define H5_HAVE_WINDOWS
/* change the following line if you would like to change the default file driver */
#define H5_DEFAULT_VFD H5FD_SEC2
/* comment the following line out if you are not using N-bit filter*/
/* #define H5_HAVE_FILTER_NBIT 1*/