Honor renames in patch views
[TortoiseGit.git] / src / TGitCache / stdafx.h
blob0917cd34558c94b3f68250212c466c5c8f20ba16
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently, but
3 // are changed infrequently
4 //
6 #pragma once
8 #include <SDKDDKVer.h>
10 #define NOMINMAX
11 #include <algorithm>
12 using std::min;
13 using std::max;
15 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
16 #define CSTRING_AVAILABLE
18 #include <WinSock2.h>
19 #include <Ws2tcpip.h>
20 #include <Wspiapi.h>
22 #include <windows.h>
24 #include <ShlObj.h>
25 #include <Shlwapi.h>
27 #include <atlbase.h>
28 #include <atlstr.h>
30 #include <conio.h>
32 using namespace ATL;
34 #include <string>
35 #include <vector>
36 #include <map>
37 #include <set>
38 #include <deque>
39 #include <functional>
41 #include "git2.h"
42 #include "SmartLibgit2Ref.h"
44 #include "scope_exit_noexcept.h"
45 #include "DebugOutput.h"
47 using AutoLocker = CComCritSecLock<CComAutoCriticalSection>;
49 #ifdef _WIN64
50 # define APP_X64_STRING "x64"
51 #else
52 # define APP_X64_STRING ""
53 #endif