Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/PluginStdAfx.h

Issue 5765952465534976: Issue #276 - Introduce ATL_Deprecate.h (Closed)
Patch Set: Created July 24, 2014, 2:06 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« adblockplus.gyp ('K') | « src/plugin/ATL_Deprecate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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='*'\"")
11 11
12 12
13 //#define STRICT 13 //#define STRICT
14 #define WINVER 0x0501 14 #define WINVER 0x0501
15 15
16 #ifndef _WIN32_WINNT 16 #ifndef _WIN32_WINNT
17 #define _WIN32_WINNT 0x0501 17 #define _WIN32_WINNT 0x0501
18 #endif 18 #endif
19 19
20 #define _ATL_APARTMENT_THREADED 20 #define _ATL_APARTMENT_THREADED
21 21
22 //#define _CRT_SECURE_NO_DEPRECATE 1 22 //#define _CRT_SECURE_NO_DEPRECATE 1
23 #include <atlbase.h> 23 #include "ATL_Deprecate.h"
24 #include <atlstr.h>
25 #include <atltypes.h>
26 24
27 extern CComModule _Module; 25 extern CComModule _Module;
28 #include <comutil.h>
Eric 2014/07/24 14:10:11 <comutil.h> is unused.
29 #include <atlcom.h>
30 #include <stdio.h> 26 #include <stdio.h>
31 #include <assert.h> 27 #include <assert.h>
32 #include <stdexcept> 28 #include <stdexcept>
33 #include <ExDisp.h> 29 #include <ExDisp.h>
34 #include <ExDispID.h> 30 #include <ExDispID.h>
35 #include <Mshtml.h> 31 #include <Mshtml.h>
36 32
37 #include <map> 33 #include <map>
38 #include <set> 34 #include <set>
39 #include <vector> 35 #include <vector>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 86
91 #ifndef countof 87 #ifndef countof
92 #define countof(x) (sizeof(x)/sizeof(*x)) 88 #define countof(x) (sizeof(x)/sizeof(*x))
93 #endif 89 #endif
94 90
95 #ifdef USE_CONSOLE 91 #ifdef USE_CONSOLE
96 #include "Console.h" 92 #include "Console.h"
97 #endif 93 #endif
98 94
99 #include "BuildVariant.h" 95 #include "BuildVariant.h"
OLDNEW
« adblockplus.gyp ('K') | « src/plugin/ATL_Deprecate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld