Added experimental ManifestDPIAwareness attribute so we can declare PerMonitorV2 awareness

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6899 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2017-09-14 17:10:33 +00:00
parent ca009c196b
commit 9f91316be0
10 changed files with 41 additions and 17 deletions

View file

@ -42,7 +42,8 @@ namespace manifest
{
dpiaware_notset,
dpiaware_false,
dpiaware_true,
dpiaware_true, // System DPI on Vista+
dpiaware_permonitor // System DPI on Vista/7/8, PerMonitor on 8.1+
};
class SupportedOSList
@ -78,7 +79,7 @@ namespace manifest
}
};
std::string generate(comctl, exec_level, dpiaware, SupportedOSList&);
std::string generate(comctl, exec_level, dpiaware, const TCHAR*, SupportedOSList&);
};