Unicode fixes

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6216 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2012-02-28 22:40:43 +00:00
parent 615ce82030
commit 382b2fa282
11 changed files with 150 additions and 49 deletions

View file

@ -10,6 +10,7 @@
# define _T(x) __T(x)
# define _tmain wmain
# define _tunlink _wunlink
# define FOPEN _wfopen
typedef std::wstring tstring;
typedef std::wistringstream tistringstream;
@ -21,6 +22,7 @@
# define _T(x) x
# define _tmain main
# define _tunlink _unlink
# define FOPEN fopen
typedef std::string tstring;
typedef std::istringstream tistringstream;