dnsapi: Add DnsGetCacheDataTable stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=40606 Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
74efb3e872
commit
ec716e9ebd
|
@ -40,7 +40,7 @@
|
||||||
@ stub DnsFreeNetworkInformation
|
@ stub DnsFreeNetworkInformation
|
||||||
@ stub DnsFreeSearchInformation
|
@ stub DnsFreeSearchInformation
|
||||||
@ stub DnsGetBufferLengthForStringCopy
|
@ stub DnsGetBufferLengthForStringCopy
|
||||||
@ stub DnsGetCacheDataTable
|
@ stdcall DnsGetCacheDataTable(ptr)
|
||||||
@ stub DnsGetDnsServerList
|
@ stub DnsGetDnsServerList
|
||||||
@ stub DnsGetDomainName
|
@ stub DnsGetDomainName
|
||||||
@ stub DnsGetHostName_A
|
@ stub DnsGetHostName_A
|
||||||
|
|
|
@ -111,6 +111,16 @@ BOOL WINAPI DnsFlushResolverCacheEntry_W( PCWSTR entry )
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* DnsGetCacheDataTable [DNSAPI.@]
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BOOL WINAPI DnsGetCacheDataTable( PDNS_CACHE_ENTRY* entry )
|
||||||
|
{
|
||||||
|
FIXME( "(%p) stub\n", entry );
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* DnsReleaseContextHandle [DNSAPI.@]
|
* DnsReleaseContextHandle [DNSAPI.@]
|
||||||
*
|
*
|
||||||
|
|
|
@ -2,5 +2,6 @@ TESTDLL = dnsapi.dll
|
||||||
IMPORTS = dnsapi
|
IMPORTS = dnsapi
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
cache.c \
|
||||||
name.c \
|
name.c \
|
||||||
record.c
|
record.c
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
/*
|
||||||
|
* Tests for dns cache functions
|
||||||
|
*
|
||||||
|
* Copyright 2019 Remi Bernon for CodeWeavers
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "winnls.h"
|
||||||
|
#include "windns.h"
|
||||||
|
|
||||||
|
#include "wine/test.h"
|
||||||
|
|
||||||
|
static void test_DnsGetCacheDataTable( void )
|
||||||
|
{
|
||||||
|
BOOL ret;
|
||||||
|
PDNS_CACHE_ENTRY entry = NULL;
|
||||||
|
|
||||||
|
ret = DnsGetCacheDataTable( NULL );
|
||||||
|
ok( !ret, "DnsGetCacheDataTable succeeded\n" );
|
||||||
|
|
||||||
|
ret = DnsGetCacheDataTable( &entry );
|
||||||
|
todo_wine
|
||||||
|
ok( ret, "DnsGetCacheDataTable failed\n" );
|
||||||
|
todo_wine
|
||||||
|
ok( entry != NULL, "DnsGetCacheDataTable returned NULL\n" );
|
||||||
|
}
|
||||||
|
|
||||||
|
START_TEST(cache)
|
||||||
|
{
|
||||||
|
test_DnsGetCacheDataTable();
|
||||||
|
}
|
|
@ -698,6 +698,15 @@ typedef struct _DNS_QUERY_CANCEL
|
||||||
char Reserved[32];
|
char Reserved[32];
|
||||||
} DNS_QUERY_CANCEL, *PDNS_QUERY_CANCEL;
|
} DNS_QUERY_CANCEL, *PDNS_QUERY_CANCEL;
|
||||||
|
|
||||||
|
typedef struct _DNS_CACHE_ENTRY
|
||||||
|
{
|
||||||
|
struct _DNS_CACHE_ENTRY* Next;
|
||||||
|
const WCHAR *Name;
|
||||||
|
WORD Type;
|
||||||
|
WORD DataLength;
|
||||||
|
ULONG Flags;
|
||||||
|
} DNS_CACHE_ENTRY, *PDNS_CACHE_ENTRY;
|
||||||
|
|
||||||
DNS_STATUS WINAPI DnsAcquireContextHandle_A(DWORD,PVOID,PHANDLE);
|
DNS_STATUS WINAPI DnsAcquireContextHandle_A(DWORD,PVOID,PHANDLE);
|
||||||
DNS_STATUS WINAPI DnsAcquireContextHandle_W(DWORD,PVOID,PHANDLE);
|
DNS_STATUS WINAPI DnsAcquireContextHandle_W(DWORD,PVOID,PHANDLE);
|
||||||
#define DnsAcquireContextHandle WINELIB_NAME_AW(DnsAcquireContextHandle_)
|
#define DnsAcquireContextHandle WINELIB_NAME_AW(DnsAcquireContextHandle_)
|
||||||
|
@ -735,6 +744,7 @@ DNS_STATUS WINAPI DnsValidateName_UTF8(PCSTR,DNS_NAME_FORMAT);
|
||||||
#define DnsValidateName WINELIB_NAME_AW(DnsValidateName_)
|
#define DnsValidateName WINELIB_NAME_AW(DnsValidateName_)
|
||||||
BOOL WINAPI DnsWriteQuestionToBuffer_W(PDNS_MESSAGE_BUFFER,PDWORD,PCWSTR,WORD,WORD,BOOL);
|
BOOL WINAPI DnsWriteQuestionToBuffer_W(PDNS_MESSAGE_BUFFER,PDWORD,PCWSTR,WORD,WORD,BOOL);
|
||||||
BOOL WINAPI DnsWriteQuestionToBuffer_UTF8(PDNS_MESSAGE_BUFFER,PDWORD,PCSTR,WORD,WORD,BOOL);
|
BOOL WINAPI DnsWriteQuestionToBuffer_UTF8(PDNS_MESSAGE_BUFFER,PDWORD,PCSTR,WORD,WORD,BOOL);
|
||||||
|
BOOL WINAPI DnsGetCacheDataTable(PDNS_CACHE_ENTRY*);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue