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:
Michael Henning 2013-04-20 22:13:05 -04:00
parent 37757e4e8d
commit 4055ccbe9c

View file

@ -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>