dnsapi: Add stubs for DnsWriteQuestionToBuffer_{UTF8,W}.

oldstable
Hans Leidekker 2006-10-20 16:13:52 +02:00 committed by Alexandre Julliard
parent dbc1becae7
commit a3a2f06a07
2 changed files with 19 additions and 6 deletions

View File

@ -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

View File

@ -164,12 +164,25 @@ 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,
LPWSTR name, WORD type, WORD xid,
BOOL recurse )
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 )
{
FIXME( "(%p,%p,%s,%d,%d,%d) stub\n", buffer, size, debugstr_w(name),
type, xid, recurse );