This is to correct my errant include.

MinGW needs windows.h not winuser.h, while yes winuser.h has the declaration, windows.h has the proper requirements needed and includes winuser.h and allows hexchat to compile against MinGW-w64 Version 6+
This commit is contained in:
ZachBacon
2019-12-16 09:11:52 -05:00
parent 68d6690f2d
commit 58b35906e6

View File

@ -54,7 +54,7 @@
#include "gtkutil.h"
#ifdef G_OS_WIN32
#include <winuser.h>
#include <windows.h>
#endif
#define GUI_SPACING (3)