LEFT | RIGHT |
(no file at all) | |
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 <Windows.h> |
| 50 #include <Sddl.h> |
| 51 |
49 | 52 |
50 //{{AFX_INSERT_LOCATION}} | 53 //{{AFX_INSERT_LOCATION}} |
51 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. | 54 // Microsoft Visual C++ will insert additional declarations immediately before t
he previous line. |
52 | 55 |
53 #include "PluginDebugMacros.h" | 56 #include "PluginDebugMacros.h" |
54 #include "PluginErrorCodes.h" | 57 #include "PluginErrorCodes.h" |
55 | 58 |
56 | 59 |
57 #if (defined PRODUCT_ADBLOCKPLUS) | 60 #if (defined PRODUCT_ADBLOCKPLUS) |
58 #include "Config.h" | 61 #include "Config.h" |
(...skipping 26 matching lines...) Expand all 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" |
LEFT | RIGHT |