ICP  1
stdafx.h
Go to the documentation of this file.
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently,
3 // but are changed infrequently
4 
5 #pragma once
6 
7 #ifndef STRICT
8 #define STRICT
9 #endif
10 
11 // Modify the following defines if you have to target a platform prior to the ones specified below.
12 // Refer to MSDN for the latest info on corresponding values for different platforms.
13 #ifndef WINVER // Allow use of features specific to Windows XP or later.
14 #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
15 #endif
16 
17 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
18 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
19 #endif
20 
21 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
22 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
23 #endif
24 
25 #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
26 #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
27 #endif
28 
29 #define _ATL_APARTMENT_THREADED
30 #define _ATL_NO_AUTOMATIC_NAMESPACE
31 
32 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
33 
34 
35 #include <afxwin.h>
36 #ifndef _AFX_NO_OLE_SUPPORT
37 #include <afxdisp.h> // MFC Automation classes
38 #endif // _AFX_NO_OLE_SUPPORT
39 
40 #include "resource.h"
41 #include <atlbase.h>
42 #include <atlcom.h>
43 #include <atlconv.h>
44 
45 #include <ctime>
46 #include <cstdio>
47 #include <cstdlib>
48 #include <cctype>
49 #include <string>
50 #include <list>
51 #include <vector>
52 #include <map>
53 
54 #include <stdint.h>
55 
56 using namespace ATL;