From 4055ccbe9cb3053c2c8bedabaa31df982fa1b752 Mon Sep 17 00:00:00 2001 From: Michael Henning Date: Sat, 20 Apr 2013 22:13:05 -0400 Subject: [PATCH] app: fix broken build on windows due to not #including windows.h This was broken after 7392679be90eecb54cce6dfa151602a314a31e35 The corresponding commit on master did not break the build because windows.h is already included there. --- app/core/gimp-utils.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/core/gimp-utils.c b/app/core/gimp-utils.c index 2b65ab0d3f..1b805bd855 100644 --- a/app/core/gimp-utils.c +++ b/app/core/gimp-utils.c @@ -26,6 +26,12 @@ #include #endif +#include + +#ifdef G_OS_WIN32 +#include +#endif + #include #include #include