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
46626eeb
Commit
46626eeb
authored
Oct 30, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dnsapi: Added DnsQueryEx stub.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ff698220
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
dnsapi.spec
dlls/dnsapi/dnsapi.spec
+1
-1
query.c
dlls/dnsapi/query.c
+21
-0
No files found.
dlls/dnsapi/dnsapi.spec
View file @
46626eeb
...
...
@@ -79,7 +79,7 @@
@ stub DnsNotifyResolver
@ stdcall DnsQuery_A(str long long ptr ptr ptr)
@ stdcall DnsQueryConfig(long long wstr ptr ptr ptr)
@ st
ub DnsQueryEx
@ st
dcall DnsQueryEx(ptr ptr ptr)
@ stdcall DnsQuery_UTF8(str long long ptr ptr ptr)
@ stdcall DnsQuery_W(wstr long long ptr ptr ptr)
@ stub DnsRecordBuild_UTF8
...
...
dlls/dnsapi/query.c
View file @
46626eeb
...
...
@@ -641,6 +641,27 @@ exit:
#endif
/* HAVE_RESOLV */
static
const
char
*
debugstr_query_request
(
const
DNS_QUERY_REQUEST
*
req
)
{
if
(
!
req
)
return
"(null)"
;
return
wine_dbg_sprintf
(
"{%d %s %s %x%08x %p %d %p %p}"
,
req
->
Version
,
debugstr_w
(
req
->
QueryName
),
dns_type_to_str
(
req
->
QueryType
),
(
UINT32
)(
req
->
QueryOptions
>>
32u
),
(
UINT32
)
req
->
QueryOptions
,
req
->
pDnsServerList
,
req
->
InterfaceIndex
,
req
->
pQueryCompletionCallback
,
req
->
pQueryContext
);
}
/******************************************************************************
* DnsQueryEx [DNSAPI.@]
*
*/
DNS_STATUS
WINAPI
DnsQueryEx
(
DNS_QUERY_REQUEST
*
request
,
DNS_QUERY_RESULT
*
result
,
DNS_QUERY_CANCEL
*
cancel
)
{
FIXME
(
"(%s %p %p)
\n
"
,
debugstr_query_request
(
request
),
result
,
cancel
);
return
DNS_ERROR_RCODE_NOT_IMPLEMENTED
;
}
/******************************************************************************
* DnsQuery_A [DNSAPI.@]
*
...
...
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