Use forward slashes in the includes for consistency and also remove double slashes
[TortoiseGit.git] / test / UnitTests / stdafx.h
blobfbfe597677bd1793a76cce31850cba9fea6a107d
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\\"
8 #include "../../src\targetver.h"
10 #include <afxwin.h> // MFC core and standard components
11 #include <afxext.h> // MFC extensions
12 #include <WinSock2.h>
13 #include <Ws2tcpip.h>
14 #include <Wspiapi.h>
15 #include <WinInet.h>
17 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
18 #ifndef _AFX_NO_AFXCMN_SUPPORT
19 #include <afxcmn.h> // MFC support for Windows Common Controls
20 #endif // _AFX_NO_AFXCMN_SUPPORT
21 #include <afxdlgs.h>
22 #include <afxctl.h>
23 #include <afxtempl.h>
24 #include <afxmt.h>
25 #include <afxext.h> // MFC extensions
26 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
28 #include <atlbase.h>
30 #pragma warning(push)
31 #pragma warning(disable: 4510 4610)
32 #include "git2.h"
33 #pragma warning(pop)
34 #include "SmartLibgit2Ref.h"
36 #include <string>
37 #include <vector>
38 #include <map>
39 #include <deque>
40 #include <set>
41 #include <algorithm>
42 #include <functional>
44 #define __WIN32__
46 #include "scope_exit_noexcept.h"
47 #include "DebugOutput.h"
49 #include "SmartHandle.h"
51 // Header for gtest
52 #include "gtest/gtest.h"
53 #include "gmock/gmock.h"
55 #include "AutoTempDir.h"