--- mstools/h/windows.h 2018/08/09 18:20:01 1.1.1.1 +++ 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-91, Microsoft Corporation +Copyright (c) 1985-1993, Microsoft Corporation Module Name: @@ -46,6 +46,7 @@ Abstract: * NOMSG - typedef MSG and associated routines * NOOPENFILE - OpenFile(), OemToAnsi, AnsiToOem, and OF_* * NOSCROLL - SB_* and scrolling routines + * NOSERVICE - All Service Controller routines, SERVICE_ equates, etc. * NOSOUND - Sound driver routines * NOTEXTMETRIC - typedef TEXTMETRIC and associated routines * NOWH - SetWindowsHook and WH_* @@ -78,14 +79,68 @@ 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 #include #include #include #include -#include #include #include +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#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 + +#ifndef RC_INVOKED +#if ( _MSC_VER >= 800 ) +#pragma warning(default:4001) +#endif +#endif /* RC_INVOKED */ -#endif // _WINDOWS_ +#endif /* _WINDOWS_ */