Skip to content

Commit

Permalink
lib/Support/Windows/Windows.h: Require at least Windows XP(5.1) API. …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
chapuni committed Aug 20, 2011
1 parent 4749cc5 commit aa62966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Support/Windows/Windows.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit aa62966

Please sign in to comment.