Chromium Code Reviews| Index: src/base/win32-headers.h |
| diff --git a/src/base/win32-headers.h b/src/base/win32-headers.h |
| index 20ec8e0261b136544c85d9faf03635fdd2956b4c..10ab0a75e4b458f71cc147a0d77748851fd31ef3 100644 |
| --- a/src/base/win32-headers.h |
| +++ b/src/base/win32-headers.h |
| @@ -30,7 +30,7 @@ |
| // Require Windows XP or higher (this is required for the RtlCaptureContext |
| // function to be present). |
|
fmeawad
2016/05/25 23:40:31
nit: Update the comment
lpy
2016/05/26 16:25:22
Done.
|
| #ifndef _WIN32_WINNT |
| -#define _WIN32_WINNT 0x501 |
| +#define _WIN32_WINNT 0x0600 |
| #endif |
| #include <windows.h> |
| @@ -42,7 +42,7 @@ |
| // Require Windows XP or higher when compiling with MinGW. This is for MinGW |
| // header files to expose getaddrinfo. |
| #undef _WIN32_WINNT |
| -#define _WIN32_WINNT 0x501 |
| +#define _WIN32_WINNT 0x0600 |
| #endif // __MINGW32__ |
| #if !defined(__MINGW32__) || defined(__MINGW64_VERSION_MAJOR) |
| #include <dbghelp.h> // For SymLoadModule64 and al. |