Fix wglGetProcAddress-related crash on Windows with NOGDI defined

This commit is contained in:
Dillon Cower 2016-08-27 16:52:16 -07:00
parent 7d72257b0f
commit 4a0d48fc7c

View File

@ -12,6 +12,14 @@
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN 1
# endif
/*
* If NOGDI is defined, wingdi.h won't be included by windows.h, and thus
* wglGetProcAddress won't be declared. It will instead be implicitly declared
* incorrectly, which we don't want.
*/
# if defined(NOGDI)
# undef NOGDI
# endif
#include <windows.h>
# undef WIN32_LEAN_AND_MEAN
#endif