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
9d452e2c
Commit
9d452e2c
authored
Oct 28, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Added GetAddrInfoExW stub.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ffa46769
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
socket.c
dlls/ws2_32/socket.c
+12
-0
ws2_32.spec
dlls/ws2_32/ws2_32.spec
+1
-0
No files found.
dlls/ws2_32/socket.c
View file @
9d452e2c
...
...
@@ -6542,6 +6542,18 @@ static struct WS_addrinfo *addrinfo_WtoA(const struct WS_addrinfoW *ai)
}
/***********************************************************************
* GetAddrInfoExW (WS2_32.@)
*/
int
WINAPI
GetAddrInfoExW
(
const
WCHAR
*
name
,
const
WCHAR
*
servname
,
DWORD
namespace
,
GUID
*
namespace_id
,
const
ADDRINFOEXW
*
hints
,
ADDRINFOEXW
**
result
,
struct
timeval
*
timeout
,
OVERLAPPED
*
overlapped
,
LPLOOKUPSERVICE_COMPLETION_ROUTINE
completion_routine
,
HANDLE
*
handle
)
{
FIXME
(
"(%s %s %x %s %p %p %p %p %p %p)
\n
"
,
debugstr_w
(
name
),
debugstr_w
(
servname
),
namespace
,
debugstr_guid
(
namespace_id
),
hints
,
result
,
timeout
,
overlapped
,
completion_routine
,
handle
);
return
WSAHOST_NOT_FOUND
;
}
/***********************************************************************
* GetAddrInfoW (WS2_32.@)
*/
int
WINAPI
GetAddrInfoW
(
LPCWSTR
nodename
,
LPCWSTR
servname
,
const
ADDRINFOW
*
hints
,
PADDRINFOW
*
res
)
...
...
dlls/ws2_32/ws2_32.spec
View file @
9d452e2c
...
...
@@ -51,6 +51,7 @@
500 stub WEP
@ stdcall FreeAddrInfoW(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)
@ stdcall InetPtonW(long wstr ptr)
...
...
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