Fix TortoiseGitBlame build problem and update version number and changelog
[TortoiseGit.git] / src / TortoiseGitBlame / stdafx.h
blob8cc55e844b5f3c6316358fb8b4ee52dba5e6e494
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 _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
20 // turns off MFC's hiding of some common and often safely ignored warning messages
21 #define _AFX_ALL_WARNINGS
23 #include <afxwin.h> // MFC core and standard components
24 #include <afxext.h> // MFC extensions
27 #include <afxdisp.h> // MFC Automation classes
31 #ifndef _AFX_NO_OLE_SUPPORT
32 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
33 #endif
34 #ifndef _AFX_NO_AFXCMN_SUPPORT
35 #include <afxcmn.h> // MFC support for Windows Common Controls
36 #endif // _AFX_NO_AFXCMN_SUPPORT
38 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
43 #include <string>
44 #include <vector>
45 #include <map>
46 #include <fstream>
47 #include <set>
48 #include <algorithm>
52 #ifdef _UNICODE
53 #if defined _M_IX86
54 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
55 #elif defined _M_IA64
56 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
57 #elif defined _M_X64
58 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
59 #else
60 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
61 #endif
62 #endif