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> | |
50 | 49 |
51 //{{AFX_INSERT_LOCATION}} | 50 //{{AFX_INSERT_LOCATION}} |
52 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. | 51 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. |
53 | 52 |
54 #include "PluginDebugMacros.h" | 53 #include "PluginDebugMacros.h" |
55 #include "PluginErrorCodes.h" | 54 #include "PluginErrorCodes.h" |
56 | 55 |
57 | 56 |
58 #if (defined PRODUCT_ADBLOCKPLUS) | 57 #if (defined PRODUCT_ADBLOCKPLUS) |
59 #include "Config.h" | 58 #include "Config.h" |
(...skipping 26 matching lines...) Expand all Loading... |
86 | 85 |
87 #ifndef countof | 86 #ifndef countof |
88 #define countof(x) (sizeof(x)/sizeof(*x)) | 87 #define countof(x) (sizeof(x)/sizeof(*x)) |
89 #endif | 88 #endif |
90 | 89 |
91 #ifdef USE_CONSOLE | 90 #ifdef USE_CONSOLE |
92 #include "Console.h" | 91 #include "Console.h" |
93 #endif | 92 #endif |
94 | 93 |
95 #include "BuildVariant.h" | 94 #include "BuildVariant.h" |
OLD | NEW |