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 | 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 | 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='*'\"") | 10 #pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windo
ws.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='
6595b64144ccf1df' language='*'\"") |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #include <iepmapi.h> | 46 #include <iepmapi.h> |
47 #include <Windows.h> | 47 #include <Windows.h> |
48 #include <Sddl.h> | 48 #include <Sddl.h> |
49 | 49 |
50 | 50 |
51 //{{AFX_INSERT_LOCATION}} | 51 //{{AFX_INSERT_LOCATION}} |
52 // 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. |
53 | 53 |
54 #include "PluginDebugMacros.h" | 54 #include "PluginDebugMacros.h" |
55 #include "PluginErrorCodes.h" | 55 #include "PluginErrorCodes.h" |
56 | |
57 #include "Config.h" | 56 #include "Config.h" |
58 | |
59 #if (defined ENTERPRISE) | |
60 #define CONFIG_IN_REGISTRY | |
61 #endif | |
62 #include "Resource.h" | 57 #include "Resource.h" |
63 | |
64 #include "PluginDebug.h" | 58 #include "PluginDebug.h" |
65 | 59 |
66 #define _CRTDBG_MAP_ALLOC | 60 #define _CRTDBG_MAP_ALLOC |
67 #include <stdlib.h> | 61 #include <stdlib.h> |
68 #include <crtdbg.h> | 62 #include <crtdbg.h> |
69 | 63 |
70 | 64 |
71 #ifdef _MSC_VER | 65 #ifdef _MSC_VER |
72 #pragma warning(push) | 66 #pragma warning(push) |
73 // warning C4996: function call with parameters that might be unsafe | 67 // warning C4996: function call with parameters that might be unsafe |
74 #pragma warning(disable : 4996) | 68 #pragma warning(disable : 4996) |
75 #endif | 69 #endif |
76 | 70 |
77 #endif // not _STDAFX_H | 71 #endif // not _STDAFX_H |
78 | 72 |
79 #ifndef countof | 73 #ifndef countof |
80 #define countof(x) (sizeof(x)/sizeof(*x)) | 74 #define countof(x) (sizeof(x)/sizeof(*x)) |
81 #endif | 75 #endif |
82 | 76 |
83 #ifdef USE_CONSOLE | 77 #ifdef USE_CONSOLE |
84 #include "Console.h" | 78 #include "Console.h" |
85 #endif | 79 #endif |
86 | 80 |
87 #include "BuildVariant.h" | 81 #include "BuildVariant.h" |
OLD | NEW |