Fixed issue #3107: Clean: Allow to remove orphaned submodules (i.e., clean -f -f)
[TortoiseGit.git] / src / TortoiseIDiff / stdafx.h
blobdc2ce1deeaa19a7305cb1e501e3c9478c0a1d7af
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 #include <ShlObj.h>
22 #include <Shlwapi.h>
24 // C RunTime Header Files
25 #include <stdlib.h>
26 #include <malloc.h>
27 #include <memory.h>
28 #include <tchar.h>
29 #include <comdef.h>
31 #include "MyMemDC.h"
33 #include "git2.h"
34 #include "SmartLibgit2Ref.h"
36 #ifdef _WIN64
37 # define APP_X64_STRING "x64"
38 #else
39 # define APP_X64_STRING ""
40 #endif