Allow to use drag'n'drop to import a patch serial
[TortoiseGit.git] / test / UnitTests / stdafx.h
blobf087cee2ac72f5b1d5d1ff2b601813a9ba673e6b
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>
16 #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
17 #ifndef _AFX_NO_AFXCMN_SUPPORT
18 #include <afxcmn.h> // MFC support for Windows Common Controls
19 #endif // _AFX_NO_AFXCMN_SUPPORT
20 #include <afxdlgs.h>
21 #include <afxctl.h>
22 #include <afxtempl.h>
23 #include <afxmt.h>
24 #include <afxext.h> // MFC extensions
25 #include <afxcontrolbars.h> // MFC support for ribbons and control bars
27 #include <atlbase.h>
29 #pragma warning(push)
30 #pragma warning(disable: 4510 4610)
31 #include "git2.h"
32 #pragma warning(pop)
33 #include "SmartLibgit2Ref.h"
35 #include <string>
36 #include <vector>
37 #include <map>
38 #include <set>
39 #include <algorithm>
40 #include <functional>
42 #define __WIN32__
44 #include "DebugOutput.h"
46 // Header for gtest
47 #include "gtest/gtest.h"
49 #include "AutoTempDir.h"