Fixed issue #3307: Abort Merge on a single file always results in a parameter error...
[TortoiseGit.git] / src / TortoiseUDiff / stdafx.h
blobe190f4a65e5dae263afc457d9cf5ab91109eae18
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 #include "../targetver.h"
10 #define NOMINMAX
11 #include <algorithm>
12 using std::max;
13 using std::min;
15 // Windows Header Files:
16 #include <windows.h>
18 // C RunTime Header Files
19 #include <stdlib.h>
20 #include <malloc.h>
21 #include <memory.h>
22 #include <tchar.h>
24 #include <windows.h>
25 #include <Commdlg.h>
26 #include <emmintrin.h>
28 #define COMMITMONITOR_FINDMSGPREV (WM_APP+1)
29 #define COMMITMONITOR_FINDMSGNEXT (WM_APP+2)
30 #define COMMITMONITOR_FINDEXIT (WM_APP+3)
31 #define COMMITMONITOR_FINDRESET (WM_APP+4)
33 #ifdef _WIN64
34 # define APP_X64_STRING "x64"
35 #else
36 # define APP_X64_STRING ""
37 #endif