Saved resource files with VS2012
[TortoiseGit.git] / test / Cache / stdafx.h
blob2e459e75a9cbb7dfd8054d6ac14ce013232fb008
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 #define CSTRING_AVAILABLE
57 using namespace ATL;
59 #pragma warning(push)
60 #pragma warning(disable: 4702) // Unreachable code warnings in xtree
61 #include <string>
62 #include <vector>
63 #include <map>
64 #include <algorithm>
65 #include <deque>
66 #pragma warning(pop)
69 typedef CComCritSecLock<CComAutoCriticalSection> AutoLocker;