| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // 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
- #define _WIN32_WINDOWS 0x0500
- #include <windows.h>
- #ifndef EXPORT
- #define EXPORT
- #endif
- #ifndef _INC_TCHAR
- #include <tchar.h> // used for ANSI v.s. UNICODE abstraction
- #endif
- #ifdef _MBCS
- #ifndef _INC_MBCTYPE
- #include <mbctype.h>
- #endif
- #ifndef _INC_MBSTRING
- #include <mbstring.h>
- #endif
- #endif
- /////////////////////////////////////////////////////////////////////////////
|