Add missing winuser.h include for mingw (#2403)

Without the include gcc will complain about WM_TIMECHANGE as undeclared.
This commit is contained in:
Zach Bacon 2019-12-16 03:42:31 -05:00 committed by Patrick
parent ea2f298a1a
commit d9809f2787
1 changed files with 4 additions and 0 deletions

View File

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