| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1998 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- // afxv_w32.h - target version/configuration control for Win32
- #ifdef _WINDOWS_
- #error WINDOWS.H already included. MFC apps must not #include <windows.h>
- #endif
- // STRICT is the only supported option (NOSTRICT is no longer supported)
- #ifndef STRICT
- #define STRICT 1
- #endif
- #ifndef WIN32
- #define WIN32
- #endif
- #ifndef WIN32_LEAN_AND_MEAN
- #define WIN32_LEAN_AND_MEAN
- #endif
- #define WIN32_EXTRA_LEAN
- #define NOSERVICE
- #define NOMCX
- #define NOIME
- #define NOSOUND
- #define NOCOMM
- #define NOKANJI
- #define NORPC
- #define NOPROXYSTUB
- #define NOIMAGE
- #define NOTAPE
- /////////////////////////////////////////////////////////////////////////////
- // Turn off warnings for /W4
- // To resume any of these warning: #pragma warning(default: 4xxx)
- // which should be placed after the AFX include files
- #ifndef ALL_WARNINGS
- #pragma warning(disable: 4201) // winnt.h uses nameless structs
- #endif
- #include <windows.h>
- /////////////////////////////////////////////////////////////////////////////
|