-- v2: conhost: Advertise system DPI awareness.
From: Rémi Bernon rbernon@codeweavers.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57195 --- programs/conhost/conhost.manifest | 21 +++++++++++++++++++++ programs/conhost/conhost.rc | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 programs/conhost/conhost.manifest
diff --git a/programs/conhost/conhost.manifest b/programs/conhost/conhost.manifest new file mode 100644 index 00000000000..e73d6692a33 --- /dev/null +++ b/programs/conhost/conhost.manifest @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> +<assemblyIdentity type="win32" name="Wine.conhost" version="0.0.0.0"/> +<dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="*" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> +</dependency> +<application xmlns="urn:schemas-microsoft-com:asm.v3"> + <windowsSettings> + <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> + </windowsSettings> +</application> +</assembly> diff --git a/programs/conhost/conhost.rc b/programs/conhost/conhost.rc index 820220b9d60..14bb10b83c4 100644 --- a/programs/conhost/conhost.rc +++ b/programs/conhost/conhost.rc @@ -124,3 +124,6 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #define WINE_PRODUCTVERSION_STR "6.1.7601.22045"
#include "wine/wine_common_ver.rc" + +/* @makedep: conhost.manifest */ +1 RT_MANIFEST conhost.manifest