From 799c5ef51bfcafb48516c58ee6e0fe4c3eba581d Mon Sep 17 00:00:00 2001 From: reuk Date: Thu, 18 Mar 2021 12:22:29 +0000 Subject: [PATCH] BasicNativeHeaders: Increment minimum required IE version on Windows This ensures the function IUnknown_GetWindow is declared in shlwapi.h when building against the Windows 7 SDK. --- modules/juce_core/native/juce_BasicNativeHeaders.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_BasicNativeHeaders.h b/modules/juce_core/native/juce_BasicNativeHeaders.h index 306bb53667..217951bf05 100644 --- a/modules/juce_core/native/juce_BasicNativeHeaders.h +++ b/modules/juce_core/native/juce_BasicNativeHeaders.h @@ -139,7 +139,7 @@ #define _UNICODE 1 #define UNICODE 1 #ifndef _WIN32_IE - #define _WIN32_IE 0x0500 + #define _WIN32_IE 0x0501 #endif #include