Module: wine Branch: master Commit: b93c3905b037b3355a91f6f24e4d6cd1e42c34dc URL: http://source.winehq.org/git/wine.git/?a=commit;h=b93c3905b037b3355a91f6f24e...
Author: André Hentschel nerv@dawncrow.de Date: Thu Mar 8 15:05:54 2012 +0100
iphlpapi: Make GetAdaptersAddresses hotpatchable.
---
dlls/iphlpapi/iphlpapi_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c index 2a3285f..a569041 100644 --- a/dlls/iphlpapi/iphlpapi_main.c +++ b/dlls/iphlpapi/iphlpapi_main.c @@ -1032,8 +1032,8 @@ static ULONG get_dns_suffix(WCHAR *suffix, ULONG *len) return ERROR_SUCCESS; }
-ULONG WINAPI GetAdaptersAddresses(ULONG family, ULONG flags, PVOID reserved, - PIP_ADAPTER_ADDRESSES aa, PULONG buflen) +ULONG WINAPI DECLSPEC_HOTPATCH GetAdaptersAddresses(ULONG family, ULONG flags, PVOID reserved, + PIP_ADAPTER_ADDRESSES aa, PULONG buflen) { InterfaceIndexTable *table; ULONG i, size, dns_server_size, dns_suffix_size, total_size, ret = ERROR_NO_DATA;