GetDpiForWindow - WINVER

#if JUCE_WINDOWS
 static double getScaleFactorForWindow (HWND h)
 {
     return (double) GetDpiForWindow (h) / USER_DEFAULT_SCREEN_DPI;
 }
#endif


Hello - just spotted this in juce develop. So this requires Windows 10 Anniversary Update (version 1607). Is that the new minimum system requirement for JUCE on Windows?

Thanks for reporting. Yes, that’s the current minimum deployment target. This is now documented in the readme:

We also reverted one commit that would have bumped the deployment target to 1703:

1 Like