Turn on warnings again for external code where possible
[TortoiseGit.git] / src / GitWCRev / stdafx.h
blobe43ebd6c8592a3d3fa5cfa4a0a3488cf3a94834b
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
7 #define _CRT_SECURE_NO_WARNINGS
9 #include "..\targetver.h"
11 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
12 #include <windows.h>
14 #include "git2.h"
15 #include "SmartLibgit2Ref.h"
17 #include <vector>
18 #include <set>
19 #include <tuple>
20 #include <algorithm>
21 #include <memory>
23 #include <tchar.h>
24 #include <Shlwapi.h>
25 #include <shellapi.h>
27 #ifdef _WIN64
28 # define APP_X64_STRING "x64"
29 #else
30 # define APP_X64_STRING ""
31 #endif