mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[DNSAPI] Correct and improve DnsFlushResolverCacheEntry_A() stub. CORE-10912
svn path=/trunk/; revision=70859
This commit is contained in:
parent
778b819070
commit
c685be6a9e
2 changed files with 6 additions and 5 deletions
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue