Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a3a2f06a
Commit
a3a2f06a
authored
Oct 20, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dnsapi: Add stubs for DnsWriteQuestionToBuffer_{UTF8,W}.
parent
dbc1beca
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
4 deletions
+17
-4
dnsapi.spec
dlls/dnsapi/dnsapi.spec
+2
-2
main.c
dlls/dnsapi/main.c
+15
-2
No files found.
dlls/dnsapi/dnsapi.spec
View file @
a3a2f06a
...
...
@@ -123,7 +123,7 @@
@ stub DnsValidateUtf8Byte
@ stub DnsWinsRecordFlagForString
@ stub DnsWinsRecordFlagString
@ st
ub DnsWriteQuestionToBuffer_UTF8
@ st
ub DnsWriteQuestionToBuffer_W
@ st
dcall DnsWriteQuestionToBuffer_UTF8(ptr ptr str long long long)
@ st
dcall DnsWriteQuestionToBuffer_W(ptr ptr wstr long long long)
@ stub DnsWriteReverseNameStringForIpAddress
@ stub GetCurrentTimeInSeconds
dlls/dnsapi/main.c
View file @
a3a2f06a
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment