Adding Unicode support to System plugin

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6050 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
wizou 2010-04-13 15:25:33 +00:00
parent 9852de80be
commit 57d296e159
5 changed files with 1348 additions and 1252 deletions

View file

@ -14,7 +14,7 @@ TCHAR *AllocString()
TCHAR *AllocStr(TCHAR *str)
{
return lstrcpy(AllocString(), str);
return lstrcpyn(AllocString(), str, g_stringsize);
}
TCHAR* system_popstring()