added a readme file where to find the source code for TortoiseOverlays
[TortoiseGit.git] / src / TortoiseOverlays / stdafx.h
blob054ec20ed06d3f7b224001d32fd1407c89824d55
1 // TortoiseOverlays - an overlay handler for Tortoise clients
2 // Copyright (C) 2007-2008 - TortoiseSVN
4 #pragma once
5 // Modify the following defines if you have to target a platform prior to the ones specified below.
6 // Refer to MSDN for the latest info on corresponding values for different platforms.
7 #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
8 # define WINVER 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
9 #endif
11 #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
12 # define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
13 #endif
15 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
16 # define _WIN32_WINDOWS 0x0501 // Change this to the appropriate value to target Windows Me or later.
17 #endif
19 #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
20 # define _WIN32_IE 0x0500 // Change this to the appropriate value to target IE 5.0 or later.
21 #endif
23 #define ISOLATION_AWARE_ENABLED 1
25 #include <windows.h>
27 #include <commctrl.h>
28 #include <Shlobj.h>
29 #include <Shlwapi.h>
30 #include <tchar.h>
32 #pragma warning(push)
33 #pragma warning(disable: 4702) // Unreachable code warnings in xtree
34 #include <string>
35 #include <vector>
36 #pragma warning(pop)