MakeNSIS WM_COPYDATA notify messages now use the QH_OUTPUTCHARSET encoding if specified by the host. CP_ACP is the default for compatibility with old IDEs.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6490 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2014-06-11 22:01:38 +00:00
parent 9c1d673c25
commit 8ed10146ef
6 changed files with 33 additions and 5 deletions

View file

@ -85,7 +85,7 @@ namespace MakensisAPI {
QUERYHOST = WM_APP // QUERYHOST_e in wParam
};
enum QUERYHOST_e {
QH_OUTPUTCHARSET = 1 // return (wincodepage+1) or 0 for default
QH_OUTPUTCHARSET = 1 // return (wincodepage+1) or 0 for default (This encoding is used by stdout and the notify messages)
};
#endif
}