Skip to content
Snippets Groups Projects
Commit d48ffbdc authored by Austin English's avatar Austin English Committed by Alexandre Julliard
Browse files
parent 029a80aa
Branches
Tags
No related merge requests found
......@@ -78,7 +78,7 @@
@ stdcall GetBestInterfaceEx( ptr ptr )
@ stub GetBestInterfaceFromStack
@ stdcall GetBestRoute( long long ptr )
#@ stub GetBestRoute2
@ stdcall GetBestRoute2( ptr long ptr ptr long ptr ptr )
@ stub GetBestRouteFromStack
#@ stub GetCurrentThreadCompartmentId
@ stdcall GetExtendedTcpTable( ptr ptr long long long long )
......
......@@ -3313,3 +3313,23 @@ DWORD WINAPI GetIpInterfaceTable(ADDRESS_FAMILY family, PMIB_IPINTERFACE_TABLE *
FIXME("(%u %p): stub\n", family, table);
return ERROR_NOT_SUPPORTED;
}
/******************************************************************
* GetBestRoute2 (IPHLPAPI.@)
*/
DWORD WINAPI GetBestRoute2(NET_LUID *luid, NET_IFINDEX index,
const SOCKADDR_INET *source, const SOCKADDR_INET *destination,
ULONG options, PMIB_IPFORWARD_ROW2 bestroute,
SOCKADDR_INET *bestaddress)
{
static int once;
if (!once++)
FIXME("(%p, %d, %p, %p, 0x%08x, %p, %p): stub\n", luid, index, source,
destination, options, bestroute, bestaddress);
if (!destination || !bestroute || !bestaddress)
return ERROR_INVALID_PARAMETER;
return ERROR_NOT_SUPPORTED;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment