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
c6946ff6
Commit
c6946ff6
authored
Oct 01, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi/tests: Use the W form of CreateEvent().
parent
b5840db3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+2
-2
No files found.
dlls/iphlpapi/tests/iphlpapi.c
View file @
c6946ff6
...
...
@@ -1062,7 +1062,7 @@ static void testNotifyAddrChange(void)
handle
=
NULL
;
ZeroMemory
(
&
overlapped
,
sizeof
(
overlapped
));
overlapped
.
hEvent
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
NULL
);
overlapped
.
hEvent
=
CreateEvent
W
(
NULL
,
FALSE
,
FALSE
,
NULL
);
ret
=
pNotifyAddrChange
(
&
handle
,
&
overlapped
);
ok
(
ret
==
ERROR_IO_PENDING
,
"NotifyAddrChange returned %d, expected ERROR_IO_PENDING
\n
"
,
ret
);
todo_wine
ok
(
handle
!=
INVALID_HANDLE_VALUE
,
"NotifyAddrChange returned invalid file handle
\n
"
);
...
...
@@ -1077,7 +1077,7 @@ static void testNotifyAddrChange(void)
{
handle
=
NULL
;
ZeroMemory
(
&
overlapped
,
sizeof
(
overlapped
));
overlapped
.
hEvent
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
NULL
);
overlapped
.
hEvent
=
CreateEvent
W
(
NULL
,
FALSE
,
FALSE
,
NULL
);
trace
(
"Testing asynchronous ipv4 address change notification. Please "
"change the ipv4 address of one of your network interfaces
\n
"
);
ret
=
pNotifyAddrChange
(
&
handle
,
&
overlapped
);
...
...
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