[DNSAPI][REACTOS] Add a header for undocumented dnsapi functions and use it in dnsapi.dll

This commit is contained in:
Eric Kohl 2019-10-20 23:13:46 +02:00
parent 4601b11fc9
commit 4455dcb26e
4 changed files with 40 additions and 7 deletions

View file

@ -41,7 +41,7 @@
@ stdcall DnsFreeNetworkInformation()
@ stdcall DnsFreeSearchInformation()
@ stdcall DnsGetBufferLengthForStringCopy()
@ stdcall DnsGetCacheDataTable()
@ stdcall DnsGetCacheDataTable(ptr)
@ stdcall DnsGetDnsServerList()
@ stdcall DnsGetDomainName()
@ stdcall DnsGetHostName_A()

View file

@ -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>

View file

@ -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

View file

@ -0,0 +1,30 @@
#ifndef _WINDNS_UNDOC_H_
#define _WINDNS_UNDOC_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _DNS_CACHE_ENTRY
{
struct _DNS_CACHE_ENTRY *pNext; /* Pointer to next entry */
PWSTR pszName; /* DNS Record Name */
unsigned short wType; /* DNS Record Type */
unsigned short wUnknown; /* Unknown */
unsigned short wFlags; /* DNS Record Flags */
} DNSCACHEENTRY, *PDNSCACHEENTRY;
BOOL
WINAPI
DnsFlushResolverCache(VOID);
BOOL
WINAPI
DnsGetCacheDataTable(
_Out_ PDNSCACHEENTRY *DnsCache);
#ifdef __cplusplus
}
#endif
#endif /* _WINDNS_UNDOC_H_ */