[llvm] r250413 - Require Windows API of version 6.1 (Windows 7).

Pawel Bylica via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 15 07:50:32 PDT 2015


Author: chfast
Date: Thu Oct 15 09:50:31 2015
New Revision: 250413

URL: http://llvm.org/viewvc/llvm-project?rev=250413&view=rev
Log:
Require Windows API of version 6.1 (Windows 7).

Modified:
    llvm/trunk/lib/Support/Windows/WindowsSupport.h

Modified: llvm/trunk/lib/Support/Windows/WindowsSupport.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/WindowsSupport.h?rev=250413&r1=250412&r2=250413&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/WindowsSupport.h (original)
+++ llvm/trunk/lib/Support/Windows/WindowsSupport.h Thu Oct 15 09:50:31 2015
@@ -26,9 +26,9 @@
 #undef _WIN32_WINNT
 #undef _WIN32_IE
 
-// Require at least Windows XP(5.1) API.
-#define _WIN32_WINNT 0x0501
-#define _WIN32_IE    0x0600 // MinGW at it again.
+// Require at least Windows 7 API.
+#define _WIN32_WINNT 0x0601
+#define _WIN32_IE    0x0800 // MinGW at it again. FIXME: verify if still needed.
 #define WIN32_LEAN_AND_MEAN
 
 #include "llvm/ADT/SmallVector.h"




More information about the llvm-commits mailing list