[DNSAPI] Get rid of the internal/windns.h file.

This commit is contained in:
Eric Kohl 2019-10-27 23:20:26 +01:00
parent b79246c534
commit a2f4e191f4
2 changed files with 9 additions and 16 deletions

View file

@ -27,8 +27,12 @@
#include <dnsrslvr_c.h>
/* Internal DNSAPI Headers */
#include <internal/windns.h>
#include <adns.h>
typedef struct
{
adns_state State;
} WINDNS_CONTEXT, *PWINDNS_CONTEXT;
static inline LPWSTR dns_strdup_uw( const char *str )
{
@ -134,4 +138,7 @@ static inline LPSTR dns_strdup_ua( const char *src )
return dst;
}
DNS_STATUS DnsIntTranslateAdnsToDNS_STATUS(int Status);
void DnsIntFreeRecordList(PDNS_RECORD ToFree);
#endif /* _DNSAPI_H */

View file

@ -1,14 +0,0 @@
#ifndef WINDNS_INTERNAL_H
#define WINDNS_INTERNAL_H
#include <adns.h>
typedef struct
{
adns_state State;
} WINDNS_CONTEXT, *PWINDNS_CONTEXT;
DNS_STATUS DnsIntTranslateAdnsToDNS_STATUS(int Status);
void DnsIntFreeRecordList(PDNS_RECORD ToFree);
#endif /* WINDNS_INTERNAL_H */