Added ManifestDPIAware attribute

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6266 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2012-09-20 18:42:21 +00:00
parent da2fe44184
commit 4b62ecbb31
8 changed files with 41 additions and 3 deletions

View file

@ -38,6 +38,13 @@ namespace manifest
exec_level_admin
};
enum dpiaware
{
dpiaware_notset,
dpiaware_false,
dpiaware_true,
};
class SupportedOSList
{
StringList m_list;
@ -74,7 +81,7 @@ namespace manifest
}
};
std::string generate(comctl, exec_level, SupportedOSList&);
std::string generate(comctl, exec_level, dpiaware, SupportedOSList&);
};