dnsapi: Add stubs for DnsWriteQuestionToBuffer_{UTF8,W}.
This commit is contained in:
parent
dbc1becae7
commit
a3a2f06a07
|
@ -123,7 +123,7 @@
|
|||
@ stub DnsValidateUtf8Byte
|
||||
@ stub DnsWinsRecordFlagForString
|
||||
@ stub DnsWinsRecordFlagString
|
||||
@ stub DnsWriteQuestionToBuffer_UTF8
|
||||
@ stub DnsWriteQuestionToBuffer_W
|
||||
@ stdcall DnsWriteQuestionToBuffer_UTF8(ptr ptr str long long long)
|
||||
@ stdcall DnsWriteQuestionToBuffer_W(ptr ptr wstr long long long)
|
||||
@ stub DnsWriteReverseNameStringForIpAddress
|
||||
@ stub GetCurrentTimeInSeconds
|
||||
|
|
|
@ -164,10 +164,23 @@ DNS_STATUS WINAPI DnsModifyRecordsInSet_W( PDNS_RECORDW add, PDNS_RECORDW delete
|
|||
}
|
||||
|
||||
/******************************************************************************
|
||||
* DnsWriteQuestionToBuffer [DNSAPI.@]
|
||||
* DnsWriteQuestionToBuffer_UTF8 [DNSAPI.@]
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI DnsWriteQuestionToBuffer( PDNS_MESSAGE_BUFFER buffer, LPDWORD size,
|
||||
BOOL WINAPI DnsWriteQuestionToBuffer_UTF8( PDNS_MESSAGE_BUFFER buffer, LPDWORD size,
|
||||
LPSTR name, WORD type, WORD xid,
|
||||
BOOL recurse )
|
||||
{
|
||||
FIXME( "(%p,%p,%s,%d,%d,%d) stub\n", buffer, size, debugstr_a(name),
|
||||
type, xid, recurse );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* DnsWriteQuestionToBuffer_W [DNSAPI.@]
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI DnsWriteQuestionToBuffer_W( PDNS_MESSAGE_BUFFER buffer, LPDWORD size,
|
||||
LPWSTR name, WORD type, WORD xid,
|
||||
BOOL recurse )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue