mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CMD] Use _T() rather than L to initialise TCHARS.
This commit is contained in:
parent
d7e71357dc
commit
8b72fce3e1
3 changed files with 3 additions and 3 deletions
|
@ -1424,7 +1424,7 @@ ReadLine(TCHAR *commandline, BOOL bMore)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
if (readline[0] == L'\0')
|
||||
if (readline[0] == _T('\0'))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -455,7 +455,7 @@ BOOL ReadCommand(LPTSTR str, INT maxlen)
|
|||
{
|
||||
/* A CTRL-C. Don't clear the the command line,
|
||||
* but return an empty string in str. */
|
||||
str[0] = L'\0';
|
||||
str[0] = _T('\0');
|
||||
curx = orgx;
|
||||
cury = orgy;
|
||||
current = charcount = 0;
|
||||
|
|
|
@ -70,7 +70,7 @@ INT cmd_start (LPTSTR Rest)
|
|||
lpTitle = GetParameter(&Rest);
|
||||
StripQuotes(lpTitle);
|
||||
}
|
||||
else if (*Rest == L'/')
|
||||
else if (*Rest == _T('/'))
|
||||
{
|
||||
LPTSTR option;
|
||||
Rest++;
|
||||
|
|
Loading…
Reference in a new issue