Prepare release and bump version numbers to 2.13.0
[TortoiseGit.git] / src / GitWCRev / stdafx.h
blobd452b2fdafc0497e3e9687c4a14f723ce8452de6
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 #define NOMINMAX
10 #include <algorithm>
11 using std::max;
12 using std::min;
14 #include <SDKDDKVer.h>
16 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
17 #include <windows.h>
19 #include "git2.h"
20 #include "SmartLibgit2Ref.h"
22 #include <vector>
23 #include <set>
24 #include <tuple>
25 #include <memory>
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