OLD | NEW |
1 #ifndef _STDAFX_H | 1 #ifndef _STDAFX_H |
2 #define _STDAFX_H | 2 #define _STDAFX_H |
3 | 3 |
4 #if _MSC_VER > 1000 | 4 #if _MSC_VER > 1000 |
5 #pragma once | 5 #pragma once |
6 #endif // _MSC_VER > 1000 | 6 #endif // _MSC_VER > 1000 |
7 | 7 |
| 8 // Embed manifest as a resource, to enable common controls |
| 9 // see http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175(v=vs.85)
.aspx#using_manifests |
| 10 #pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windo
ws.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='
6595b64144ccf1df' language='*'\"") |
8 | 11 |
9 | 12 |
10 //#define STRICT | 13 //#define STRICT |
11 #define WINVER 0x0501 | 14 #define WINVER 0x0501 |
12 | 15 |
13 #ifndef _WIN32_WINNT | 16 #ifndef _WIN32_WINNT |
14 #define _WIN32_WINNT 0x0501 | 17 #define _WIN32_WINNT 0x0501 |
15 #endif | 18 #endif |
16 | 19 |
17 #define _ATL_APARTMENT_THREADED | 20 #define _ATL_APARTMENT_THREADED |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 88 |
86 #ifndef countof | 89 #ifndef countof |
87 #define countof(x) (sizeof(x)/sizeof(*x)) | 90 #define countof(x) (sizeof(x)/sizeof(*x)) |
88 #endif | 91 #endif |
89 | 92 |
90 #ifdef USE_CONSOLE | 93 #ifdef USE_CONSOLE |
91 #include "Console.h" | 94 #include "Console.h" |
92 #endif | 95 #endif |
93 | 96 |
94 #include "BuildVariant.h" | 97 #include "BuildVariant.h" |
OLD | NEW |