Warn if a unsupported bitmap format is used (Bug #681 & FR #559)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7273 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2021-06-25 20:44:37 +00:00
parent 774a70ae93
commit ef6d0510ec
11 changed files with 61 additions and 9 deletions

View file

@ -185,7 +185,8 @@ public:
UTF8 = CP_UTF8,
UNKNOWN = (0xffff-0),
AUTO = (0xffff-1),
CPCOUNT = (0xffff-2) // Must be less than our other magic numbers
BINARY = (0xffff-2),
CPCOUNT = (0xffff-3) // Must be less than our other magic numbers
};
NStreamEncoding() { Reset(); }