Fix typos
[TortoiseGit.git] / src / TortoiseProc / stdafx.h
blob13690d6920bc73fae615e422dddb73cecdcf750d
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\\"
7 #define REGSTRING_DARKTHEME L"Software\\TortoiseGit\\DarkTheme"
9 #include <SDKDDKVer.h>
11 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
13 #define NOMINMAX
14 #include <algorithm>
15 using std::max;
16 using std::min;
18 // turns off MFC's hiding of some common and often safely ignored warning messages
19 #define _AFX_ALL_WARNINGS
21 #include <afxwin.h> // MFC core and standard components
22 #include <afxext.h> // MFC extensions
23 #include <WinSock2.h>
24 #include <Ws2tcpip.h>
25 #include <Wspiapi.h>
27 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
28 #ifndef _AFX_NO_AFXCMN_SUPPORT
29 #include <afxcmn.h> // MFC support for Windows Common Controls
30 #endif // _AFX_NO_AFXCMN_SUPPORT
31 #include <afxdlgs.h>
32 #include <afxctl.h>
33 #include <afxtempl.h>
34 #include <afxmt.h>
35 #include <afxext.h> // MFC extensions
36 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
37 #include <afxtaskdialog.h>
39 #include <atlbase.h>
41 #include "SmartHandle.h"
43 #include "git2.h"
44 #include "SmartLibgit2Ref.h"
46 #include <string>
47 #include <vector>
48 #include <map>
49 #include <set>
50 #include <functional>
52 #include <vfw.h>
53 #include <shlobj.h>
54 #include <Shlwapi.h>
55 #include <shlguid.h>
56 #include <uxtheme.h>
57 #include <dlgs.h>
58 #include <wininet.h>
59 #include <assert.h>
60 #include <math.h>
61 #include <gdiplus.h>
63 #define __WIN32__
66 #define USE_GDI_GRADIENT
67 #define HISTORYCOMBO_WITH_SYSIMAGELIST
69 #include "scope_exit_noexcept.h"
70 #include "ProfilingInfo.h"
71 #include "DebugOutput.h"
72 #include <afxdhtml.h>
74 #ifdef _WIN64
75 # define APP_X64_STRING "x64"
76 #else
77 # define APP_X64_STRING ""
78 #endif