--- mstools/h/windows.h 2018/08/09 18:21:03 1.1.1.3 +++ mstools/h/windows.h 2018/08/09 18:22:56 1.1.1.4 @@ -1,6 +1,6 @@ -/*++ BUILD Version: 0001 // Increment this if a change has global effects +/*++ BUILD Version: 0001 Increment this if a change has global effects -Copyright (c) 1985-1992, Microsoft Corporation +Copyright (c) 1985-1993, Microsoft Corporation Module Name: @@ -79,8 +79,24 @@ Abstract: #endif /* RC_INVOKED */ +#if !defined(_ALPHA_) && !defined(_MIPS_) && !defined(_X86_) && defined(_M_IX86) +#define _X86_ +#endif + +#if !defined(_ALPHA_) && !defined(_X86_) && !defined(_MIPS_) && defined(_M_MRX000) +#define _MIPS_ +#endif + +#if !defined(_ALPHA_) && !defined(_X86_) && !defined(_MIPS_) && defined(_M_ALPHA) +#define _ALPHA_ +#endif + #ifndef RC_INVOKED +#if ( _MSC_VER >= 800 ) +#pragma warning(disable:4001) +#endif #include +#include #endif /* RC_INVOKED */ #include @@ -88,28 +104,43 @@ Abstract: #include #include #include -#include #include #include #include #include + +#ifndef WIN32_LEAN_AND_MEAN #include -#include #include #include #include -#include #include #include #include -#include #include #include #include #include +#ifndef NOGDI +#include +#include #include +#ifndef INC_OLE2 +#include +#else +#include +#endif /* OLE2 */ +#endif /* !NOGDI */ +#endif /* WIN32_LEAN_AND_MEAN */ + #ifndef NOSERVICE #include #endif -#endif // _WINDOWS_ +#ifndef RC_INVOKED +#if ( _MSC_VER >= 800 ) +#pragma warning(default:4001) +#endif +#endif /* RC_INVOKED */ + +#endif /* _WINDOWS_ */