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
e3e6872f
Commit
e3e6872f
authored
Oct 09, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localui/tests: Use strings instead of arrays of chars.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3503fb0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
localui.c
dlls/localui/tests/localui.c
+2
-4
No files found.
dlls/localui/tests/localui.c
View file @
e3e6872f
...
...
@@ -43,8 +43,6 @@ static PMONITORUI pui;
static
BOOL
(
WINAPI
*
pAddPortUI
)(
PCWSTR
,
HWND
,
PCWSTR
,
PWSTR
*
);
static
BOOL
(
WINAPI
*
pConfigurePortUI
)(
PCWSTR
,
HWND
,
PCWSTR
);
static
BOOL
(
WINAPI
*
pDeletePortUI
)(
PCWSTR
,
HWND
,
PCWSTR
);
static
const
CHAR
fmt_comA
[]
=
{
'C'
,
'O'
,
'M'
,
'%'
,
'u'
,
':'
,
0
};
static
const
CHAR
fmt_lptA
[]
=
{
'L'
,
'P'
,
'T'
,
'%'
,
'u'
,
':'
,
0
};
static
LPBYTE
pi_buffer
;
static
DWORD
pi_numports
;
...
...
@@ -304,7 +302,7 @@ START_TEST(localui)
/* "LPT1:" - "LPT9:" */
while
(((
lpt_present
==
NULL
)
||
(
lpt_absent
==
NULL
))
&&
id
<
9
)
{
id
++
;
sprintf
(
bufferA
,
fmt_lptA
,
id
);
sprintf
(
bufferA
,
"LPT%u:"
,
id
);
MultiByteToWideChar
(
CP_ACP
,
0
,
bufferA
,
-
1
,
bufferW
,
ARRAY_SIZE
(
bufferW
));
pi2
=
find_portinfo2
(
bufferW
);
if
(
pi2
&&
(
lpt_present
==
NULL
))
lpt_present
=
pi2
;
...
...
@@ -315,7 +313,7 @@ START_TEST(localui)
/* "COM1:" - "COM9:" */
while
(((
com_present
==
NULL
)
||
(
com_absent
==
NULL
))
&&
id
<
9
)
{
id
++
;
sprintf
(
bufferA
,
fmt_comA
,
id
);
sprintf
(
bufferA
,
"COM%u:"
,
id
);
MultiByteToWideChar
(
CP_ACP
,
0
,
bufferA
,
-
1
,
bufferW
,
ARRAY_SIZE
(
bufferW
));
pi2
=
find_portinfo2
(
bufferW
);
if
(
pi2
&&
(
com_present
==
NULL
))
com_present
=
pi2
;
...
...
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