mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:45:50 +00:00
[DNSAPI][REACTOS] Add a header for undocumented dnsapi functions and use it in dnsapi.dll
This commit is contained in:
parent
4601b11fc9
commit
4455dcb26e
4 changed files with 40 additions and 7 deletions
|
@ -41,7 +41,7 @@
|
|||
@ stdcall DnsFreeNetworkInformation()
|
||||
@ stdcall DnsFreeSearchInformation()
|
||||
@ stdcall DnsGetBufferLengthForStringCopy()
|
||||
@ stdcall DnsGetCacheDataTable()
|
||||
@ stdcall DnsGetCacheDataTable(ptr)
|
||||
@ stdcall DnsGetDnsServerList()
|
||||
@ stdcall DnsGetDomainName()
|
||||
@ stdcall DnsGetHostName_A()
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <winbase.h>
|
||||
#include <winnls.h>
|
||||
#include <windns.h>
|
||||
#include <reactos/windns_undoc.h>
|
||||
#define NTOS_MODE_USER
|
||||
#include <ndk/rtlfuncs.h>
|
||||
|
||||
|
|
|
@ -216,11 +216,11 @@ DnsFindAuthoritativeZone()
|
|||
return ERROR_OUTOFMEMORY;
|
||||
}
|
||||
|
||||
DNS_STATUS WINAPI
|
||||
DnsFlushResolverCache()
|
||||
BOOL WINAPI
|
||||
DnsFlushResolverCache(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_OUTOFMEMORY;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
|
@ -273,11 +273,13 @@ DnsGetBufferLengthForStringCopy()
|
|||
return ERROR_OUTOFMEMORY;
|
||||
}
|
||||
|
||||
DNS_STATUS WINAPI
|
||||
DnsGetCacheDataTable()
|
||||
BOOL
|
||||
WINAPI
|
||||
DnsGetCacheDataTable(
|
||||
_Out_ PDNSCACHEENTRY *DnsCache)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_OUTOFMEMORY;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
DNS_STATUS WINAPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue