diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-20 06:35:31 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-20 06:35:31 +0000 |
commit | aa629668db2dc827741d116515276228327b0282 (patch) | |
tree | 997cddb61270817cd96554fefb5f99a6221bf143 /lib/Support/Windows | |
parent | 4749cc5a3d198ea31b14c552a35a80d09ec53fa4 (diff) | |
download | external_llvm-aa629668db2dc827741d116515276228327b0282.zip external_llvm-aa629668db2dc827741d116515276228327b0282.tar.gz external_llvm-aa629668db2dc827741d116515276228327b0282.tar.bz2 |
lib/Support/Windows/Windows.h: Require at least Windows XP(5.1) API. We will not support Windows 2000 any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows')
-rw-r--r-- | lib/Support/Windows/Windows.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Support/Windows/Windows.h b/lib/Support/Windows/Windows.h index 4a1553b..a6a425f 100644 --- a/lib/Support/Windows/Windows.h +++ b/lib/Support/Windows/Windows.h @@ -19,8 +19,8 @@ // mingw-w64 tends to define it as 0x0502 in its headers. #undef _WIN32_WINNT -// Require at least Windows 2000 API. -#define _WIN32_WINNT 0x0500 +// Require at least Windows XP(5.1) API. +#define _WIN32_WINNT 0x0501 #define _WIN32_IE 0x0500 // MinGW at it again. #define WIN32_LEAN_AND_MEAN |