Jim Park's Unicode NSIS merging - Step 1 : switch to TCHARs where relevant.

Compiler output is identical before & after this step

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/branches/wizou@6036 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
wizou 2010-03-24 17:22:56 +00:00
parent 4e48722b63
commit 752d7d239a
209 changed files with 9698 additions and 7658 deletions

View file

@ -4,6 +4,9 @@
Copyright (C) 1998-2005 Gilles Vollant
Read unzip.h for more info
Unicode support by Jim Park -- 08/28/2007
(Unicode ZIP file name, but not the files in the archive itself.)
*/
/* Decryption code comes from crypt.c by Info-ZIP but has been greatly reduced in terms of
@ -395,7 +398,7 @@ local uLong unzlocal_SearchCentralDir(pzlib_filefunc_def,filestream)
of this unzip package.
*/
extern unzFile ZEXPORT unzOpen2 (path, pzlib_filefunc_def)
const char *path;
const TCHAR *path;
zlib_filefunc_def* pzlib_filefunc_def;
{
unz_s us;
@ -498,7 +501,7 @@ extern unzFile ZEXPORT unzOpen2 (path, pzlib_filefunc_def)
extern unzFile ZEXPORT unzOpen (path)
const char *path;
const TCHAR *path;
{
return unzOpen2(path, NULL);
}