ws2_32: Added GetAddrInfoExW stub.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2015-10-28 16:51:51 +01:00 committed by Alexandre Julliard
parent ffa467691d
commit 9d452e2ccd
2 changed files with 13 additions and 0 deletions

View File

@ -6541,6 +6541,18 @@ static struct WS_addrinfo *addrinfo_WtoA(const struct WS_addrinfoW *ai)
return ret;
}
/***********************************************************************
* 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.@)
*/

View File

@ -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)