mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +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
|
||||
|
|
30
sdk/include/reactos/windns_undoc.h
Normal file
30
sdk/include/reactos/windns_undoc.h
Normal 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_ */
|
Loading…
Reference in a new issue