Use forward slashes in the includes for consistency and also remove double slashes
[TortoiseGit.git] / src / TortoiseGitBlame / stdafx.h
blobf85f17dc0f14e92a06e2686b6a094326467e38c4
2 // stdafx.h : include file for standard system include files,
3 // or project specific include files that are used frequently,
4 // but are changed infrequently
6 #pragma once
8 #ifndef _SECURE_ATL
9 #define _SECURE_ATL 1
10 #endif
12 #ifndef VC_EXTRALEAN
13 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
14 #endif
16 #include "../targetver.h"
18 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
20 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
22 // turns off MFC's hiding of some common and often safely ignored warning messages
23 #define _AFX_ALL_WARNINGS
25 #include <afxwin.h> // MFC core and standard components
26 #include <afxext.h> // MFC extensions
28 #include <afxstr.h>
30 #include <afxdisp.h> // MFC Automation classes
31 #include <Commctrl.h>
33 #include "git2.h"
34 #include "SmartLibgit2Ref.h"
36 #ifndef _AFX_NO_OLE_SUPPORT
37 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
38 #endif
39 #ifndef _AFX_NO_AFXCMN_SUPPORT
40 #include <afxcmn.h> // MFC support for Windows Common Controls
41 #endif // _AFX_NO_AFXCMN_SUPPORT
43 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
45 #include "scope_exit_noexcept.h"
46 #include "DebugOutput.h"
48 #include <string>
49 #include <vector>
50 #include <map>
51 #include <fstream>
52 #include <set>
53 #include <algorithm>
54 #include <functional>
56 #define USE_GDI_GRADIENT
57 #define HISTORYCOMBO_WITH_SYSIMAGELIST
59 #ifdef _UNICODE
60 #if defined _M_IX86
61 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
62 #elif defined _M_IA64
63 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
64 #elif defined _M_X64
65 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
66 #else
67 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
68 #endif
69 #endif