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
bf6a20fa
Commit
bf6a20fa
authored
Dec 11, 2010
by
David Bartley
Committed by
Alexandre Julliard
Dec 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Add CancelIPChangeNotify stub.
parent
4c386998
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
0 deletions
+28
-0
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-0
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+24
-0
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+1
-0
iphlpapi.h
include/iphlpapi.h
+2
-0
No files found.
dlls/iphlpapi/iphlpapi.spec
View file @
bf6a20fa
...
...
@@ -6,6 +6,7 @@
@ stdcall AllocateAndGetIpNetTableFromStack( ptr long long long )
@ stdcall AllocateAndGetTcpTableFromStack( ptr long long long )
@ stdcall AllocateAndGetUdpTableFromStack( ptr long long long )
@ stdcall CancelIPChangeNotify( ptr )
@ stdcall CreateIpForwardEntry( ptr )
@ stdcall CreateIpNetEntry( ptr )
@ stdcall CreateProxyArpEntry( long long long )
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
bf6a20fa
...
...
@@ -200,6 +200,30 @@ DWORD WINAPI AllocateAndGetIpAddrTableFromStack(PMIB_IPADDRTABLE *ppIpAddrTable,
/******************************************************************
* CancelIPChangeNotify (IPHLPAPI.@)
*
* Cancel a previous notification created by NotifyAddrChange or
* NotifyRouteChange.
*
* PARAMS
* overlapped [In] overlapped structure that notifies the caller
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
* FIXME
* Stub, returns FALSE.
*/
BOOL
WINAPI
CancelIPChangeNotify
(
LPOVERLAPPED
overlapped
)
{
FIXME
(
"(overlapped %p): stub
\n
"
,
overlapped
);
return
FALSE
;
}
/******************************************************************
* CreateIpForwardEntry (IPHLPAPI.@)
*
* Create a route in the local computer's IP table.
...
...
dlls/iphlpapi/tests/iphlpapi.c
View file @
bf6a20fa
...
...
@@ -799,6 +799,7 @@ static void testGetPerAdapterInfo(void)
/*
still-to-be-tested 2K-onward functions:
AddIPAddress
CancelIPChangeNotify
CreateProxyArpEntry
DeleteIPAddress
DeleteProxyArpEntry
...
...
include/iphlpapi.h
View file @
bf6a20fa
...
...
@@ -111,6 +111,8 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped);
DWORD
WINAPI
NotifyRouteChange
(
PHANDLE
Handle
,
LPOVERLAPPED
overlapped
);
BOOL
WINAPI
CancelIPChangeNotify
(
LPOVERLAPPED
overlapped
);
DWORD
WINAPI
GetAdapterIndex
(
IN
LPWSTR
AdapterName
,
OUT
PULONG
IfIndex
);
DWORD
WINAPI
AddIPAddress
(
IPAddr
Address
,
IPMask
IpMask
,
DWORD
IfIndex
,
...
...
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