Fix parsing serial patches with different order or additional headers
[TortoiseGit.git] / test / Cache / stdafx.h
blobb0822742932350451d6947be68e67eeec84c64a7
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 "../../targetver.h"
10 #define NOMINMAX
11 #include <algorithm>
12 using std::min;
13 using std::max;
15 #define _AFX_ALL_WARNINGS
17 #include <afxwin.h> // MFC core and standard components
18 #include <afxext.h> // MFC extensions
20 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
21 #ifndef _AFX_NO_AFXCMN_SUPPORT
22 #include <afxcmn.h> // MFC support for Windows Common Controls
23 #endif // _AFX_NO_AFXCMN_SUPPORT
24 #include <afxdlgs.h>
25 #include <afxctl.h>
26 #include <afxtempl.h>
27 #include <afxmt.h>
29 #include <tchar.h>
30 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
32 #include <atlbase.h>
34 #include <conio.h>
36 #define CSTRING_AVAILABLE
38 using namespace ATL;
40 #include <string>
41 #include <vector>
42 #include <map>
43 #include <deque>
44 #include <functional>
46 #include "git2.h"
47 #include "SmartLibgit2Ref.h"
49 #include "scope_exit_noexcept.h"
51 #include "DebugOutput.h"
53 typedef CComCritSecLock<CComAutoCriticalSection> AutoLocker;