Skip to content

Instantly share code, notes, and snippets.

@WildGenie
Created November 21, 2015 11:08
Show Gist options
  • Save WildGenie/4bd6b053087f59ffd751 to your computer and use it in GitHub Desktop.
Save WildGenie/4bd6b053087f59ffd751 to your computer and use it in GitHub Desktop.
#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