mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[DNSAPI] Get rid of the internal/windns.h file.
This commit is contained in:
parent
b79246c534
commit
a2f4e191f4
2 changed files with 9 additions and 16 deletions
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
Loading…
Reference in a new issue