From 2aa68eaac1264d6962ecc45cb5cc44cd66724e3e Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Mon, 9 Jul 2001 11:04:44 -0500 Subject: [svn-r4155] Purpose: updated windows headers in these 2 src files Description: Solution: Platforms tested: NT: --- src/H5FDstdio.c | 9 ++------- src/H5private.h | 22 +++++----------------- 2 files changed, 7 insertions(+), 24 deletions(-) diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index 0aa6fe7..67784b3 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -24,16 +24,11 @@ #endif #ifdef WIN32 -#if !defined(_68K_) && !defined(_MPPC_) && !defined(_PPC_) && !defined(_ALPHA_) && !defined(_MIPS_) && !defined(_X86_) && defined(_M_IX86) -#define _X86_ -#endif -#include -#include - +#include #include - #endif + #ifdef MAX #undef MAX #endif /* MAX */ diff --git a/src/H5private.h b/src/H5private.h index 5b3a6e7..9a30f18 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -134,20 +134,8 @@ #ifdef WIN32 -/* - * we need this from - * HDF5 is currently supported on _X86_ - * including has the side effect of introducing thousands of Windows GUI - * macros and type declarations to the compilation environment, so we don't include it - */ - -#if !defined(_68K_) && !defined(_MPPC_) && !defined(_PPC_) && !defined(_ALPHA_) && !defined(_MIPS_) && !defined(_X86_) && defined(_M_IX86) -#define _X86_ -#endif - -#include -#include -#include +#define VC_EXTRALEAN /*Exclude rarely-used stuff from Windows headers */ +#include /* H5_inline */ @@ -157,8 +145,6 @@ #endif /* -The inline keywords allows the compiler to insert a copy of -the function body into each place the function is called inline is now in C but in the C99 standard and not the old C89 version so MS doesn't recognize it yet (as of April 2001) */ @@ -168,7 +154,9 @@ MS doesn't recognize it yet (as of April 2001) # define H5_inline #endif -#endif /*WIN32*/ + +#endif +/*WIN32*/ #ifndef F_OK # define F_OK 00 -- cgit v0.12