Aida JonikienÄ— (@DodoGTA) commented about dlls/iphlpapi/iphlpapi_main.c:
row->CreationTimeStamp.QuadPart = stat->creation_time; }
+DWORD WINAPI GetAnycastIpAddressTable(ADDRESS_FAMILY family, MIB_ANYCASTIPADDRESS_TABLE **table) +{ + DWORD err, size; + TRACE( "%u, %p\n", family, table ); + + if (!table || (family != AF_INET && family != AF_INET6 && family != AF_UNSPEC)) + return ERROR_INVALID_PARAMETER; + + FIXME(":stub - returning empty MIB_ANYCASTIPADDRESS_TABLE\n");
This string should be changed to just `returning empty MIB_ANYCASTIPADDRESS_TABLE\n` instead (or this FIXME can be removed entirely because the one above would serve its purpose) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4940#note_59025