Welcome to mirror list, hosted at ThFree Co, Russian Federation.

windows.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 714c55588979a9bbbe57a1fb650e747190f7c47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#pragma once

#include "target_os.hpp"

#ifdef OMIM_OS_WINDOWS
// These defines are moved to common.pri because
// they should be equal for all libraries, even for 3party ones

//#ifdef _WIN32_WINNT
//  #undef _WIN32_WINNT
//#endif
//#define _WIN32_WINNT 0x0501

//#ifdef WINVER
//  #undef WINVER
//#endif
//#define WINVER 0x0501

//#ifndef WIN32_LEAN_AND_MEAN
//  #define WIN32_LEAN_AND_MEAN 1
//#endif

//#ifdef _WIN32_IE
//  #undef _WIN32_IE
//#endif
//#define _WIN32_IE 0x0501

//#ifdef NTDDI_VERSION
//  #undef NTDDI_VERSION
//#endif
//#define NTDDI_VERSION 0x05010000

#include <windows.h>

#undef min
#undef max

#endif // OMIM_OS_WINDOWS