Jim Park's Unicode NSIS merging - Step 4 : merging more TCHAR stuff that shouldn't have any impact

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6041 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
wizou 2010-03-29 14:24:47 +00:00
parent 8ab72b9ece
commit acf9a8c21f
41 changed files with 937 additions and 586 deletions

View file

@ -168,9 +168,9 @@ NSISFunc(SetBg) {
uWndWidth = uScrWidth;
uWndHeight = uScrHeight;
char szGradient[] = {'/', 'G', 'R', 'A', 'D', 'I', 'E', 'N', 'T', 0};
char szFillScreen[] = {'/', 'F', 'I' ,'L', 'L', 'S', 'C', 'R', 'E', 'E', 'N', 0};
char szTiled[] = {'/', 'T', 'I', 'L', 'E', 'D', 0};
LPCTSTR szGradient = _T("/GRADIENT");
LPCTSTR szFillScreen = _T("/FILLSCREEN");
LPCTSTR szTiled = _T("/TILED");
popstring(szTemp);
if (!lstrcmpi(szTemp, szGradient)) {
@ -357,9 +357,9 @@ NSISFunc(Destroy) {
}
NSISFunc(Sound) {
char szLoop[] = {'/', 'L', 'O', 'O', 'P', 0};
char szWait[] = {'/', 'W', 'A', 'I', 'T', 0};
char szStop[] = {'/', 'S', 'T', 'O', 'P', 0};
LPCTSTR szLoop = _T("/LOOP");
LPCTSTR szWait = _T("/WAIT");
LPCTSTR szStop = _T("/STOP");
DWORD flags = SND_FILENAME | SND_NODEFAULT;