1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

iphlpapi: Trace parameters to GetAdaptersAddresses.

This commit is contained in:
Juan Lang 2010-09-16 14:04:02 -07:00 committed by Alexandre Julliard
parent 8da6bb6fb3
commit c297dd2fac

View File

@ -927,6 +927,8 @@ ULONG WINAPI GetAdaptersAddresses(ULONG family, ULONG flags, PVOID reserved,
InterfaceIndexTable *table;
ULONG i, size, total_size, ret = ERROR_NO_DATA;
TRACE("(%d, %08x, %p, %p, %p)\n", family, flags, reserved, aa, buflen);
if (!buflen) return ERROR_INVALID_PARAMETER;
table = getInterfaceIndexTable();