Fixed issue #568: push using ssh private key with a password fails the first time
[TortoiseGit.git] / src / TortoiseBlame / stdafx.h
blob4db5a9c6f72f3cb4c43941871eecdf2fed6e762e
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
9 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
10 #define _WIN32_WINNT 0x0500
12 // Windows Header Files:
13 #include <windows.h>
14 // C RunTime Header Files
15 #include <stdlib.h>
16 #include <malloc.h>
17 #include <memory.h>
18 #include <tchar.h>
19 #include <shlwapi.h>
20 #include <richedit.h>
21 #include <commctrl.h>
23 #pragma warning(push)
24 #pragma warning(disable: 4702) // Unreachable code warnings in xtree
25 #include <string>
26 #include <vector>
27 #include <map>
28 #include <fstream>
29 #pragma warning(pop)