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
4962b2f8
Commit
4962b2f8
authored
Dec 24, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localui/tests: Constify some character strings.
parent
181004bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
localui.c
dlls/localui/tests/localui.c
+7
-7
No files found.
dlls/localui/tests/localui.c
View file @
4962b2f8
...
...
@@ -44,12 +44,12 @@ static BOOL (WINAPI *pAddPortUI)(PCWSTR, HWND, PCWSTR, PWSTR *);
static
BOOL
(
WINAPI
*
pConfigurePortUI
)(
PCWSTR
,
HWND
,
PCWSTR
);
static
BOOL
(
WINAPI
*
pDeletePortUI
)(
PCWSTR
,
HWND
,
PCWSTR
);
static
WCHAR
does_not_existW
[]
=
{
'd'
,
'o'
,
'e'
,
's'
,
'_'
,
'n'
,
'o'
,
't'
,
'_'
,
'e'
,
'x'
,
'i'
,
's'
,
't'
,
0
};
static
WCHAR
emptyW
[]
=
{
0
};
static
CHAR
fmt_comA
[]
=
{
'C'
,
'O'
,
'M'
,
'%'
,
'u'
,
':'
,
0
};
static
CHAR
fmt_lptA
[]
=
{
'L'
,
'P'
,
'T'
,
'%'
,
'u'
,
':'
,
0
};
static
WCHAR
localportW
[]
=
{
'L'
,
'o'
,
'c'
,
'a'
,
'l'
,
' '
,
'P'
,
'o'
,
'r'
,
't'
,
0
};
static
WCHAR
portname_fileW
[]
=
{
'F'
,
'I'
,
'L'
,
'E'
,
':'
,
0
};
static
const
WCHAR
does_not_existW
[]
=
{
'd'
,
'o'
,
'e'
,
's'
,
'_'
,
'n'
,
'o'
,
't'
,
'_'
,
'e'
,
'x'
,
'i'
,
's'
,
't'
,
0
};
static
const
WCHAR
emptyW
[]
=
{
0
};
static
const
CHAR
fmt_comA
[]
=
{
'C'
,
'O'
,
'M'
,
'%'
,
'u'
,
':'
,
0
};
static
const
CHAR
fmt_lptA
[]
=
{
'L'
,
'P'
,
'T'
,
'%'
,
'u'
,
':'
,
0
};
static
const
WCHAR
localportW
[]
=
{
'L'
,
'o'
,
'c'
,
'a'
,
'l'
,
' '
,
'P'
,
'o'
,
'r'
,
't'
,
0
};
static
const
WCHAR
portname_fileW
[]
=
{
'F'
,
'I'
,
'L'
,
'E'
,
':'
,
0
};
static
LPBYTE
pi_buffer
;
static
DWORD
pi_numports
;
...
...
@@ -64,7 +64,7 @@ static LPWSTR com_absent;
/* ########################### */
static
PORT_INFO_2W
*
find_portinfo2
(
LPWSTR
pPort
)
static
PORT_INFO_2W
*
find_portinfo2
(
LP
C
WSTR
pPort
)
{
PORT_INFO_2W
*
pi
;
DWORD
res
;
...
...
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