Fixed issue #2219: "add cherry picked from" is not applied when squashing/editing...
[TortoiseGit.git] / src / TortoiseProc / stdafx.h
blobc7635c9bd9393094b5a02fecfd36f259ed4181a7
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently,
3 // but are changed infrequently
5 #pragma once
6 #define XMESSAGEBOX_APPREGPATH "Software\\TortoiseGit\\"
8 #include "..\targetver.h"
10 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
12 // turns off MFC's hiding of some common and often safely ignored warning messages
13 #define _AFX_ALL_WARNINGS
15 #include <afxwin.h> // MFC core and standard components
16 #include <afxext.h> // MFC extensions
17 #include <WinSock2.h>
18 #include <Ws2tcpip.h>
19 #include <Wspiapi.h>
21 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
22 #ifndef _AFX_NO_AFXCMN_SUPPORT
23 #include <afxcmn.h> // MFC support for Windows Common Controls
24 #endif // _AFX_NO_AFXCMN_SUPPORT
25 #include <afxdlgs.h>
26 #include <afxctl.h>
27 #include <afxtempl.h>
28 #include <afxmt.h>
29 #include <afxext.h> // MFC extensions
30 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
32 #include <atlbase.h>
34 #pragma warning(push)
35 #include "git2.h"
36 #pragma warning(pop)
37 #include "SmartLibgit2Ref.h"
39 #include <string>
40 #include <vector>
41 #include <map>
42 #include <set>
43 #include <algorithm>
44 #include <functional>
46 #include <vfw.h>
47 #include <shlobj.h>
48 #include <Shlwapi.h>
49 #include <shlguid.h>
50 #include <uxtheme.h>
51 #include <dlgs.h>
52 #include <wininet.h>
53 #include <assert.h>
54 #include <math.h>
55 #include <gdiplus.h>
57 #define __WIN32__
60 #define USE_GDI_GRADIENT
61 #define HISTORYCOMBO_WITH_SYSIMAGELIST
63 #include "ProfilingInfo.h"
64 #include "DebugOutput.h"
65 #include <afxdhtml.h>
67 #ifdef _WIN64
68 # define APP_X64_STRING "x64"
69 #else
70 # define APP_X64_STRING ""
71 #endif