Commit 0d1d8c12 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

netio.sys: Implement wsk_free_address_info() function.

parent 8599ab24
......@@ -203,7 +203,9 @@ static NTSTATUS WINAPI wsk_get_address_info(WSK_CLIENT *client, UNICODE_STRING *
static void WINAPI wsk_free_address_info(WSK_CLIENT *client, ADDRINFOEXW *addr_info)
{
FIXME("client %p, addr_info %p stub.\n", client, addr_info);
TRACE("client %p, addr_info %p.\n", client, addr_info);
FreeAddrInfoExW(addr_info);
}
static NTSTATUS WINAPI wsk_get_name_info(WSK_CLIENT *client, SOCKADDR *sock_addr, ULONG sock_addr_length,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment