diff --git a/reactos/dll/win32/dnsapi/dnsapi.spec b/reactos/dll/win32/dnsapi/dnsapi.spec index 00727b1103a..7262aaa5cd4 100644 --- a/reactos/dll/win32/dnsapi/dnsapi.spec +++ b/reactos/dll/win32/dnsapi/dnsapi.spec @@ -34,7 +34,7 @@ @ stdcall DnsExtractRecordsFromMessage_W(ptr long ptr) @ stdcall DnsFindAuthoritativeZone() @ stdcall DnsFlushResolverCache() -@ stdcall DnsFlushResolverCacheEntry_A() +@ stdcall DnsFlushResolverCacheEntry_A(str) @ stdcall DnsFlushResolverCacheEntry_UTF8() @ stdcall DnsFlushResolverCacheEntry_W() @ stdcall DnsFreeAdapterInformation() diff --git a/reactos/dll/win32/dnsapi/dnsapi/stubs.c b/reactos/dll/win32/dnsapi/dnsapi/stubs.c index dd1c7bb91ab..137f1641a5b 100644 --- a/reactos/dll/win32/dnsapi/dnsapi/stubs.c +++ b/reactos/dll/win32/dnsapi/dnsapi/stubs.c @@ -223,11 +223,12 @@ DnsFlushResolverCache() return ERROR_OUTOFMEMORY; } -DNS_STATUS WINAPI -DnsFlushResolverCacheEntry_A() +BOOL WINAPI +DnsFlushResolverCacheEntry_A(PCSTR entry) { - UNIMPLEMENTED; - return ERROR_OUTOFMEMORY; + DPRINT1("DnsFlushResolverCacheEntry_A(%s) is stubplemented.\n", entry); + if (!entry) return FALSE; + return TRUE; } DNS_STATUS WINAPI