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
650f8517
Commit
650f8517
authored
Sep 29, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Sep 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localspl: Fix type of a WCHAR buffer.
parent
068e861d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
provider.c
dlls/localspl/provider.c
+3
-3
No files found.
dlls/localspl/provider.c
View file @
650f8517
...
@@ -568,7 +568,7 @@ static DWORD monitor_loadall(void)
...
@@ -568,7 +568,7 @@ static DWORD monitor_loadall(void)
static
monitor_t
*
monitor_loadui
(
monitor_t
*
pm
)
static
monitor_t
*
monitor_loadui
(
monitor_t
*
pm
)
{
{
monitor_t
*
pui
=
NULL
;
monitor_t
*
pui
=
NULL
;
LPWSTR
buffer
[
MAX_PATH
];
WCHAR
buffer
[
MAX_PATH
];
HANDLE
hXcv
;
HANDLE
hXcv
;
DWORD
len
;
DWORD
len
;
DWORD
res
;
DWORD
res
;
...
@@ -591,8 +591,8 @@ static monitor_t * monitor_loadui(monitor_t * pm)
...
@@ -591,8 +591,8 @@ static monitor_t * monitor_loadui(monitor_t * pm)
TRACE
(
"got %u with %p
\n
"
,
res
,
hXcv
);
TRACE
(
"got %u with %p
\n
"
,
res
,
hXcv
);
if
(
res
)
{
if
(
res
)
{
res
=
pm
->
monitor
->
pfnXcvDataPort
(
hXcv
,
monitorUIW
,
NULL
,
0
,
(
BYTE
*
)
buffer
,
sizeof
(
buffer
),
&
len
);
res
=
pm
->
monitor
->
pfnXcvDataPort
(
hXcv
,
monitorUIW
,
NULL
,
0
,
(
BYTE
*
)
buffer
,
sizeof
(
buffer
),
&
len
);
TRACE
(
"got %u with %s
\n
"
,
res
,
debugstr_w
(
(
LPWSTR
)
buffer
));
TRACE
(
"got %u with %s
\n
"
,
res
,
debugstr_w
(
buffer
));
if
(
res
==
ERROR_SUCCESS
)
pui
=
monitor_load
(
NULL
,
(
LPWSTR
)
buffer
);
if
(
res
==
ERROR_SUCCESS
)
pui
=
monitor_load
(
NULL
,
buffer
);
pm
->
monitor
->
pfnXcvClosePort
(
hXcv
);
pm
->
monitor
->
pfnXcvClosePort
(
hXcv
);
}
}
}
}
...
...
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