Minor cleanup
[TortoiseGit.git] / src / GitWCRev / stdafx.h
blob0302e0c739f11c4cec1962a7daa7eb22db40dc8e
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 #pragma warning(push)
15 #pragma warning(disable: 4510 4512 4610)
16 #include "git2.h"
17 #pragma warning(pop)
18 #include "SmartLibgit2Ref.h"
20 #include <vector>
21 #include <set>
22 #include <tuple>
23 #include <algorithm>
24 #include <memory>
26 #include <tchar.h>
27 #include <Shlwapi.h>
28 #include <shellapi.h>
30 #ifdef _WIN64
31 # define APP_X64_STRING "x64"
32 #else
33 # define APP_X64_STRING ""
34 #endif