Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
869f8fd2
Commit
869f8fd2
authored
Sep 07, 2014
by
Marko Hauptvogel
Committed by
Alexandre Julliard
Sep 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Add icmpv6 send stub.
parent
4d0ac5c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
icmp.c
dlls/iphlpapi/icmp.c
+26
-0
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-1
No files found.
dlls/iphlpapi/icmp.c
View file @
869f8fd2
...
...
@@ -179,6 +179,32 @@ HANDLE WINAPI Icmp6CreateFile(VOID)
/***********************************************************************
* Icmp6SendEcho2 (IPHLPAPI.@)
*/
DWORD
WINAPI
Icmp6SendEcho2
(
HANDLE
IcmpHandle
,
HANDLE
Event
,
PIO_APC_ROUTINE
ApcRoutine
,
PVOID
ApcContext
,
struct
sockaddr_in6
*
SourceAddress
,
struct
sockaddr_in6
*
DestinationAddress
,
LPVOID
RequestData
,
WORD
RequestSize
,
PIP_OPTION_INFORMATION
RequestOptions
,
LPVOID
ReplyBuffer
,
DWORD
ReplySize
,
DWORD
Timeout
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p, %p, %d, %p, %p, %d, %d): stub
\n
"
,
IcmpHandle
,
Event
,
ApcRoutine
,
ApcContext
,
SourceAddress
,
DestinationAddress
,
RequestData
,
RequestSize
,
RequestOptions
,
ReplyBuffer
,
ReplySize
,
Timeout
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* IcmpCreateFile (IPHLPAPI.@)
*/
HANDLE
WINAPI
IcmpCreateFile
(
VOID
)
...
...
dlls/iphlpapi/iphlpapi.spec
View file @
869f8fd2
...
...
@@ -152,7 +152,7 @@
@ stdcall GetUniDirectionalAdapterInfo( ptr ptr )
@ stdcall Icmp6CreateFile()
#@ stub Icmp6ParseReplies
#@ stub Icmp6SendEcho2
@ stdcall Icmp6SendEcho2(ptr ptr ptr ptr ptr ptr ptr long ptr ptr long long)
@ stdcall IcmpCloseHandle(ptr)
@ stdcall IcmpCreateFile()
@ stub IcmpParseReplies
...
...
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