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 | 8 |
9 | 9 |
10 //#define STRICT | 10 //#define STRICT |
(...skipping 28 matching lines...) Expand all Loading... |
39 #include <sstream> | 39 #include <sstream> |
40 #include <commctrl.h> | 40 #include <commctrl.h> |
41 #include <mshtmdid.h> | 41 #include <mshtmdid.h> |
42 #include <Mlang.h> | 42 #include <Mlang.h> |
43 #include <initguid.h> | 43 #include <initguid.h> |
44 | 44 |
45 // Win32 | 45 // Win32 |
46 #include <shlguid.h> | 46 #include <shlguid.h> |
47 #include <shlobj.h> | 47 #include <shlobj.h> |
48 #include <iepmapi.h> | 48 #include <iepmapi.h> |
| 49 #include <lmcons.h> |
49 | 50 |
50 //{{AFX_INSERT_LOCATION}} | 51 //{{AFX_INSERT_LOCATION}} |
51 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. | 52 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. |
52 | 53 |
53 #include "PluginDebugMacros.h" | 54 #include "PluginDebugMacros.h" |
54 #include "PluginErrorCodes.h" | 55 #include "PluginErrorCodes.h" |
55 | 56 |
56 | 57 |
57 #if (defined PRODUCT_ADBLOCKPLUS) | 58 #if (defined PRODUCT_ADBLOCKPLUS) |
58 #include "Config.h" | 59 #include "Config.h" |
(...skipping 27 matching lines...) Expand all Loading... |
86 | 87 |
87 #ifndef countof | 88 #ifndef countof |
88 #define countof(x) (sizeof(x)/sizeof(*x)) | 89 #define countof(x) (sizeof(x)/sizeof(*x)) |
89 #endif | 90 #endif |
90 | 91 |
91 #ifdef USE_CONSOLE | 92 #ifdef USE_CONSOLE |
92 #include "Console.h" | 93 #include "Console.h" |
93 #endif | 94 #endif |
94 | 95 |
95 #include "BuildVariant.h" | 96 #include "BuildVariant.h" |
OLD | NEW |