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

@ -31,7 +31,11 @@
#include "update.h"
namespace MakensisAPI {
#ifdef _WIN64
const TCHAR* SigintEventNameFmt = _T("makensis win32 sigint event %Iu");
#else
const TCHAR* SigintEventNameFmt = _T("makensis win32 sigint event %u");
#endif
const TCHAR* SigintEventNameLegacy = _T("makensis win32 signint event");
}