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
3cb6d50c
Commit
3cb6d50c
authored
May 24, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Added GetAddrInfoExCancel stub implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1026df4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
socket.c
dlls/ws2_32/socket.c
+9
-0
ws2_32.spec
dlls/ws2_32/ws2_32.spec
+1
-0
ws2tcpip.h
include/ws2tcpip.h
+1
-0
No files found.
dlls/ws2_32/socket.c
View file @
3cb6d50c
...
...
@@ -6813,6 +6813,15 @@ int WINAPI GetAddrInfoExW(const WCHAR *name, const WCHAR *servname, DWORD namesp
}
/***********************************************************************
* GetAddrInfoExCancel (WS2_32.@)
*/
int
WINAPI
GetAddrInfoExCancel
(
HANDLE
*
handle
)
{
FIXME
(
"(%p)
\n
"
,
handle
);
return
WSA_INVALID_HANDLE
;
}
/***********************************************************************
* GetAddrInfoW (WS2_32.@)
*/
int
WINAPI
GetAddrInfoW
(
LPCWSTR
nodename
,
LPCWSTR
servname
,
const
ADDRINFOW
*
hints
,
PADDRINFOW
*
res
)
...
...
dlls/ws2_32/ws2_32.spec
View file @
3cb6d50c
...
...
@@ -52,6 +52,7 @@
@ stdcall FreeAddrInfoExW(ptr)
@ stdcall FreeAddrInfoW(ptr)
@ stdcall GetAddrInfoExCancel(ptr)
@ stdcall GetAddrInfoExW(wstr wstr long ptr ptr ptr ptr ptr ptr ptr)
@ stdcall GetAddrInfoW(wstr wstr ptr ptr)
@ stdcall GetNameInfoW(ptr long ptr long ptr long long)
...
...
include/ws2tcpip.h
View file @
3cb6d50c
...
...
@@ -178,6 +178,7 @@ int WINAPI GetAddrInfoExA(const char*,const char*,DWORD,GUID*,const ADDRINFOEXA
int
WINAPI
GetAddrInfoExW
(
const
WCHAR
*
,
const
WCHAR
*
,
DWORD
,
GUID
*
,
const
ADDRINFOEXW
*
,
ADDRINFOEXW
**
,
struct
timeval
*
,
OVERLAPPED
*
,
LPLOOKUPSERVICE_COMPLETION_ROUTINE
,
HANDLE
*
);
#define GetAddrInfoEx WINELIB_NAME_AW(GetAddrInfoExW)
int
WINAPI
GetAddrInfoExCancel
(
HANDLE
*
);
int
WINAPI
WS
(
getnameinfo
)(
const
SOCKADDR
*
,
WS
(
socklen_t
),
PCHAR
,
DWORD
,
PCHAR
,
DWORD
,
INT
);
#define GetNameInfoA WS(getnameinfo)
INT
WINAPI
GetNameInfoW
(
const
SOCKADDR
*
,
WS
(
socklen_t
),
PWCHAR
,
DWORD
,
PWCHAR
,
DWORD
,
INT
);
...
...
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