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 | 613655f89ca989fead7755e2f99c990bc9917d71 (patch) | |
tree | 86a70d6fd7c8009a52776a878e1213640fc960fe /llvm/lib/Support/Windows | |
parent | 4e6bd3955f824db258a7cd81157539323fb140be (diff) | |
download | bcm5719-llvm-613655f89ca989fead7755e2f99c990bc9917d71.tar.gz bcm5719-llvm-613655f89ca989fead7755e2f99c990bc9917d71.zip |
lib/Support/Windows/Windows.h: Require at least Windows XP(5.1) API. We will not support Windows 2000 any more.
llvm-svn: 138198
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Windows.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Windows/Windows.h b/llvm/lib/Support/Windows/Windows.h index 4a1553b599d..a6a425fdd12 100644 --- a/llvm/lib/Support/Windows/Windows.h +++ b/llvm/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 |