Unicode port: adding UTF-16LE file functions

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6089 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
wizou 2010-05-17 15:11:29 +00:00
parent 7a99fafa68
commit 24c02b97d0
6 changed files with 101 additions and 12 deletions

View file

@ -12,6 +12,8 @@
*
* This software is provided 'as-is', without any express or implied
* warranty.
*
* Added commands for Unicode support by Jim Park -- 08/21/2007
*/
#ifndef _TOKENS_H_
@ -236,6 +238,12 @@ enum
TOK_FILEWRITE,
TOK_FILEREADBYTE,
TOK_FILEWRITEBYTE,
#ifdef _UNICODE
TOK_FILEREADUTF16LE,
TOK_FILEWRITEUTF16LE,
TOK_FILEREADWORD,
TOK_FILEWRITEWORD,
#endif
TOK_FILESEEK,
TOK_GETFULLPATHNAME,
TOK_REBOOT,