[llvm-commits] [llvm] r138198 - /llvm/trunk/lib/Support/Windows/Windows.h
NAKAMURA Takumi
geek4civic at gmail.com
Fri Aug 19 23:35:31 PDT 2011
Author: chapuni
Date: Sat Aug 20 01:35:31 2011
New Revision: 138198
URL: http://llvm.org/viewvc/llvm-project?rev=138198&view=rev
Log:
lib/Support/Windows/Windows.h: Require at least Windows XP(5.1) API. We will not support Windows 2000 any more.
Modified:
llvm/trunk/lib/Support/Windows/Windows.h
Modified: llvm/trunk/lib/Support/Windows/Windows.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Windows.h?rev=138198&r1=138197&r2=138198&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Windows.h (original)
+++ llvm/trunk/lib/Support/Windows/Windows.h Sat Aug 20 01:35:31 2011
@@ -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
More information about the llvm-commits
mailing list