Line | |
---|
1 | //////////////////////////////////////////////////////////// |
---|
2 | // Copyright (C) Roman Ryltsov, 2008-2009 |
---|
3 | // Created by Roman Ryltsov roman@alax.info |
---|
4 | // |
---|
5 | // $Id: stdafx.h 144 2009-06-21 10:58:12Z alax $ |
---|
6 | |
---|
7 | #pragma once |
---|
8 | |
---|
9 | // Modify the following defines if you have to target a platform prior to the ones specified below. |
---|
10 | // Refer to MSDN for the latest info on corresponding values for different platforms. |
---|
11 | #ifndef WINVER // Allow use of features specific to Windows XP or later. |
---|
12 | #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows. |
---|
13 | #endif |
---|
14 | |
---|
15 | #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. |
---|
16 | #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. |
---|
17 | #endif |
---|
18 | |
---|
19 | #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. |
---|
20 | #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. |
---|
21 | #endif |
---|
22 | |
---|
23 | #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later. |
---|
24 | #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE. |
---|
25 | #endif |
---|
26 | |
---|
27 | #include <stdio.h> |
---|
28 | #include <tchar.h> |
---|
29 | |
---|
30 | |
---|
31 | #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit |
---|
32 | |
---|
33 | #include <atlbase.h> |
---|
34 | #include <atlstr.h> |
---|
35 | |
---|
36 | // TODO: reference additional headers your program requires here |
---|
Note: See
TracBrowser
for help on using the repository browser.