app: fix broken build on windows due to not #including windows.h
This was broken after 7392679be9
The corresponding commit on master did not break the build because
windows.h is already included there.
This commit is contained in:
parent
37757e4e8d
commit
4055ccbe9c
1 changed files with 6 additions and 0 deletions
|
|
@ -26,6 +26,12 @@
|
|||
#include <langinfo.h>
|
||||
#endif
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <cairo.h>
|
||||
#include <glib-object.h>
|
||||
#include <gobject/gvaluecollector.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue