TGitCache test application basic work.
[TortoiseGit.git] / test / Cache / stdafx.h
blob971c5aeae2b2d62c081bc46968c7852fda4c26f8
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 #define _WIN32_IE 0x600
10 #ifdef UNICODE
11 # ifndef WINVER
12 # define WINVER 0x0501
13 # endif
14 # ifndef _WIN32_WINNT
15 # define _WIN32_WINNT 0x0501
16 # endif
17 # ifndef _WIN32_WINDOWS
18 # define _WIN32_WINDOWS 0x0501
19 # endif
20 #else
21 # ifndef WINVER
22 # define WINVER 0x0410
23 # endif
24 # ifndef _WIN32_WINNT
25 # define _WIN32_WINNT 0x0500
26 # endif
27 # ifndef _WIN32_WINDOWS
28 # define _WIN32_WINDOWS 0x0410
29 # endif
30 #endif
32 #define _AFX_ALL_WARNINGS
34 #include <afxwin.h> // MFC core and standard components
35 #include <afxext.h> // MFC extensions
37 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
38 #ifndef _AFX_NO_AFXCMN_SUPPORT
39 #include <afxcmn.h> // MFC support for Windows Common Controls
40 #endif // _AFX_NO_AFXCMN_SUPPORT
41 #include <afxdlgs.h>
42 #include <afxctl.h>
43 #include <afxtempl.h>
44 #include <afxmt.h>
47 #include <tchar.h>
48 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
50 #include <atlbase.h>
52 #include <conio.h>
54 // TODO: reference additional headers your program requires here
56 #define CSTRING_AVAILABLE
59 using namespace ATL;
61 #pragma warning(push)
62 #pragma warning(disable: 4702) // Unreachable code warnings in xtree
63 #include <string>
64 #include <vector>
65 #include <map>
66 #include <algorithm>
67 #include <deque>
68 #pragma warning(pop)
71 typedef CComCritSecLock<CComAutoCriticalSection> AutoLocker;