app: Fix disordered windows.h include on display and gui sources

The headers provided by Windows SDK do not work disordered.
Somehow, MINGW is more lenient regarding that error.
This commit is contained in:
Bruno Lopes 2025-11-28 17:06:36 -03:00
parent e285b70d6a
commit 232337550d
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -23,9 +23,9 @@
#include <gtk/gtk.h>
#ifdef G_OS_WIN32
#include <windows.h>
#include <windef.h>
#include <winbase.h>
#include <windows.h>
#endif
#include "libgimpbase/gimpbase.h"

View file

@ -89,9 +89,9 @@
#include "themes.h"
#ifdef G_OS_WIN32
#include <windows.h>
#include <windef.h>
#include <winbase.h>
#include <windows.h>
#endif
#ifdef GDK_WINDOWING_QUARTZ

View file

@ -26,9 +26,9 @@
#endif
#ifdef G_OS_WIN32
#include <windows.h>
#include <windef.h>
#include <winbase.h>
#include <windows.h>
#endif
#include "libgimpbase/gimpbase.h"