Provide (experimental) clang-format file
[TortoiseGit.git] / src / AsyncFramework / stdafx.h
blob85acdab9f30efe6287ae6643fe17185131e504a0
1 /***************************************************************************
2 * Copyright (C) 2009-2010 by Stefan Fuhrmann *
3 * stefanfuhrmann@alice-dsl.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #pragma once
23 #define NOMINMAX
25 #define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
26 #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
27 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
28 #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
30 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
32 #include <windows.h>
34 #include <assert.h>
35 #include <process.h>
37 #include <vector>
38 #include <algorithm>