Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
513ee9a3
Commit
513ee9a3
authored
Nov 29, 2011
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Rename unicodePipes variable.
parent
1a8df977
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wcmdmain.c
programs/cmd/wcmdmain.c
+4
-4
No files found.
programs/cmd/wcmdmain.c
View file @
513ee9a3
...
...
@@ -45,7 +45,7 @@ WCHAR quals[MAX_PATH], param1[MAXSTRING], param2[MAXSTRING];
BATCH_CONTEXT
*
context
=
NULL
;
extern
struct
env_stack
*
pushd_directories
;
static
const
WCHAR
*
pagedMessage
=
NULL
;
static
BOOL
unicode
Pipes
=
FALSE
;
static
BOOL
unicode
Output
=
FALSE
;
#define MAX_WRITECONSOLE_SIZE 65535
...
...
@@ -89,7 +89,7 @@ static void WCMD_output_asis_len(const WCHAR *message, DWORD len, HANDLE device)
DWORD
convertedChars
;
char
*
buffer
;
if
(
!
unicode
Pipes
)
{
if
(
!
unicode
Output
)
{
if
(
!
(
buffer
=
get_file_buffer
()))
return
;
...
...
@@ -2259,9 +2259,9 @@ int wmain (int argc, WCHAR *argvW[])
}
else
if
(
tolowerW
(
c
)
==
's'
)
{
opt_s
=
TRUE
;
}
else
if
(
tolowerW
(
c
)
==
'a'
)
{
unicode
Pipes
=
FALSE
;
unicode
Output
=
FALSE
;
}
else
if
(
tolowerW
(
c
)
==
'u'
)
{
unicode
Pipes
=
TRUE
;
unicode
Output
=
TRUE
;
}
else
if
(
tolowerW
(
c
)
==
't'
&&
(
*
argvW
)[
2
]
==
':'
)
{
opt_t
=
strtoulW
(
&
(
*
argvW
)[
3
],
NULL
,
16
);
}
else
if
(
tolowerW
(
c
)
==
'x'
||
tolowerW
(
c
)
==
'y'
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment