Merge branch 'drag-handler'
[TortoiseGit.git] / src / TortoiseIDiff / stdafx.h
blobaf956d29c6e04b82fe1bc8778bf0187d9b7beec6
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 // Modify the following defines if you have to target a platform prior to the ones specified below.
9 // Refer to MSDN for the latest info on corresponding values for different platforms.
10 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
12 #include "../targetver.h"
15 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
17 // turns off MFC's hiding of some common and often safely ignored warning messages
18 #define _AFX_ALL_WARNINGS
20 #include <afx.h>
21 #pragma warning(push)
22 #pragma warning(disable: 4091)
23 #include <ShlObj.h>
24 #pragma warning(pop)
25 #include <Shlwapi.h>
27 // C RunTime Header Files
28 #include <stdlib.h>
29 #include <malloc.h>
30 #include <memory.h>
31 #include <tchar.h>
32 #include <comdef.h>
34 #include "MyMemDC.h"
36 #pragma warning(push)
37 #pragma warning(disable: 4510 4512 4610)
38 #include "git2.h"
39 #pragma warning(pop)
40 #include "SmartLibgit2Ref.h"
42 #ifdef _WIN64
43 # define APP_X64_STRING "x64"
44 #else
45 # define APP_X64_STRING ""
46 #endif