00001
00002
00003
00004
00005 #pragma once
00006
00007 #ifndef _SECURE_ATL
00008 #define _SECURE_ATL 1
00009 #endif
00010
00011 #ifndef VC_EXTRALEAN
00012 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00013 #endif
00014
00015
00016
00017 #ifndef WINVER // Allow use of features specific to Windows XP or later.
00018 #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
00019 #endif
00020
00021 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
00022 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
00023 #endif
00024
00025 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00026 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00027 #endif
00028
00029 #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
00030 #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
00031 #endif
00032
00033 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00034
00035
00036 #define _AFX_ALL_WARNINGS
00037
00038 #include <afxwin.h>
00039 #include <afxext.h>
00040
00041
00042
00043
00044
00045 #ifndef _AFX_NO_OLE_SUPPORT
00046 #include <afxdtctl.h>
00047 #endif
00048 #ifndef _AFX_NO_AFXCMN_SUPPORT
00049 #include <afxcmn.h>
00050 #endif // _AFX_NO_AFXCMN_SUPPORT
00051