00001
00002
00003
00004
00005 #pragma once
00006
00007 #ifndef VC_EXTRALEAN
00008 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00009 #endif
00010
00011
00012
00013 #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
00014 #define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00015 #endif
00016
00017 #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
00018 #define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 2000 or later.
00019 #endif
00020
00021 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00022 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00023 #endif
00024
00025 #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
00026 #define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.
00027 #endif
00028
00029 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00030
00031 #include <afxctl.h>
00032 #include <afxext.h>
00033 #include <afxdtctl.h>
00034 #ifndef _AFX_NO_AFXCMN_SUPPORT
00035 #include <afxcmn.h>
00036 #endif // _AFX_NO_AFXCMN_SUPPORT
00037
00038
00039
00040 #include <afxdb.h>
00041 #include <afxdao.h>
00042 #include <afxwin.h>
00043
00044