Created
November 21, 2015 11:08
-
-
Save WildGenie/4bd6b053087f59ffd751 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _WIN32_IE | |
#define _WIN32_IE 0x0600 | |
#elif _WIN32_IE <= 0x0600 | |
#undef _WIN32_IE | |
#define _WIN32_IE 0x0600 | |
#endif | |
// Win XP or higher | |
#ifndef _WIN32_WINNT | |
#define _WIN32_WINNT 0x0501 | |
#elif _WIN32_WINNT <= 0x0501 | |
#undef _WIN32_WINNT | |
#define _WIN32_WINNT 0x0501 | |
#endif | |
// Win XP or higher | |
#ifndef WINVER | |
#define WINVER 0x0501 | |
#elif WINVER <= 0x0501 | |
#undef WINVER | |
#define WINVER 0x0501 | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment