Add include for winuser.h for mingw compilers.

Without the include gcc will complain about WM_TIMECHANGE as undeclared.
This commit is contained in:
ZachBacon 2019-12-15 02:09:47 -05:00
parent ea2f298a1a
commit c5d47fc5a8
No known key found for this signature in database
GPG Key ID: 0F1C8FECF5BCF671

View File

@ -53,6 +53,10 @@
#include "sexy-spell-entry.h"
#include "gtkutil.h"
#ifdef WIN32
#include <winuser.h>
#endif
#define GUI_SPACING (3)
#define GUI_BORDER (0)