Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 16 matching lines...) Expand all Loading... | |
27 #pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windo ws.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken=' 6595b64144ccf1df' language='*'\"") | 27 #pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windo ws.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken=' 6595b64144ccf1df' language='*'\"") |
28 | 28 |
29 | 29 |
30 //#define STRICT | 30 //#define STRICT |
31 #define WINVER 0x0501 | 31 #define WINVER 0x0501 |
32 | 32 |
33 #ifndef _WIN32_WINNT | 33 #ifndef _WIN32_WINNT |
34 #define _WIN32_WINNT 0x0501 | 34 #define _WIN32_WINNT 0x0501 |
35 #endif | 35 #endif |
36 | 36 |
37 /* | |
38 * PassthroughAPP requires at least IE version 7.0 | |
39 * Must be defined before other Windows headers or it gets redefined incorrectly | |
40 */ | |
41 #define _WIN32_IE _WIN32_IE_IE70 | |
sergei
2016/02/26 19:53:56
We support IE starting from IE 8, wouldn't it be b
Eric
2016/05/19 16:10:19
The way these definitions work, they turn on new f
| |
42 | |
37 #define _ATL_APARTMENT_THREADED | 43 #define _ATL_APARTMENT_THREADED |
38 | 44 |
39 //#define _CRT_SECURE_NO_DEPRECATE 1 | 45 //#define _CRT_SECURE_NO_DEPRECATE 1 |
40 #include "ATL_Deprecate.h" | 46 #include "ATL_Deprecate.h" |
41 | 47 |
42 #include <stdio.h> | 48 #include <stdio.h> |
43 #include <assert.h> | 49 #include <assert.h> |
44 #include <stdexcept> | 50 #include <stdexcept> |
45 #include <ExDisp.h> | 51 #include <ExDisp.h> |
46 #include <ExDispID.h> | 52 #include <ExDispID.h> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
78 | 84 |
79 #endif // not _STDAFX_H | 85 #endif // not _STDAFX_H |
80 | 86 |
81 #ifndef countof | 87 #ifndef countof |
82 #define countof(x) (sizeof(x)/sizeof(*x)) | 88 #define countof(x) (sizeof(x)/sizeof(*x)) |
83 #endif | 89 #endif |
84 | 90 |
85 #ifdef USE_CONSOLE | 91 #ifdef USE_CONSOLE |
86 #include "Console.h" | 92 #include "Console.h" |
87 #endif | 93 #endif |
OLD | NEW |