Conditionally define API version macros.

master
Camilla Berglund ago%!(EXTRA string=12 years)
parent 6770ae0556
commit 3415f3ccde
  1. 6
      src/win32_platform.h

@ -53,10 +53,12 @@
#endif
// GLFW requires Windows XP or later
#ifndef WINVER
#if WINVER < 0x0501
#undef WINVER
#define WINVER 0x0501
#endif
#ifndef _WIN32_WINNT
#if _WIN32_WINNT < 0x0501
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif

Loading…
Cancel
Save