// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__C970B502_A683_4D0F_9AC0_C6BD25D7BE9A__INCLUDED_) #define AFX_STDAFX_H__C970B502_A683_4D0F_9AC0_C6BD25D7BE9A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #if _MSC_VER > 1200 // MS VC++ 7.0(VS.NET 2002) or later // Modify the following defines if you have to target a platform prior to the ones specified below. // Refer to MSDN for the latest info on corresponding values for different platforms. #ifndef WINVER // Allow use of features specific to Windows XP or later. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows. #endif #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. #endif #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. #endif #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE. #endif #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit // turns off MFC's hiding of some common and often safely ignored warning messages #define _AFX_ALL_WARNINGS #pragma comment(lib, "comsuppw.lib") #pragma warning(disable : 4996) // C4996 : 'function': was declared deprecated #pragma warning(disable : 4819) // C4819 : The file contains a character that cannot be represented in the current code page (number). Save the file in Unicode format to prevent data loss. #endif #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers #pragma warning(disable:4786) #include // MFC core and standard components #include // MFC extensions #include // MFC support for Internet Explorer 4 Common Controls #ifndef _AFX_NO_AFXCMN_SUPPORT #include // MFC support for Windows Common Controls #endif // _AFX_NO_AFXCMN_SUPPORT //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_STDAFX_H__C970B502_A683_4D0F_9AC0_C6BD25D7BE9A__INCLUDED_)