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
a21c1f3c
Commit
a21c1f3c
authored
Jul 07, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Ignore QueryInterface call for an undocumented interface.
parent
c71454db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
protocol.c
dlls/urlmon/tests/protocol.c
+6
-0
No files found.
dlls/urlmon/tests/protocol.c
View file @
a21c1f3c
...
...
@@ -853,6 +853,8 @@ static IInternetProtocolSink mime_protocol_sink = { &mime_protocol_sink_vtbl };
static
HRESULT
QueryInterface
(
REFIID
riid
,
void
**
ppv
)
{
static
const
IID
IID_undocumented
=
{
0x58DFC7D0
,
0x5381
,
0x43E5
,{
0x9D
,
0x72
,
0x4C
,
0xDD
,
0xE4
,
0xCB
,
0x0F
,
0x1A
}};
*
ppv
=
NULL
;
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_IInternetProtocolSink
,
riid
))
...
...
@@ -862,6 +864,10 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
if
(
IsEqualGUID
(
&
IID_IUriContainer
,
riid
))
return
E_NOINTERFACE
;
/* TODO */
/* NOTE: IE8 queries for undocumented {58DFC7D0-5381-43E5-9D72-4CDDE4CB0F1A} interface. */
if
(
IsEqualGUID
(
&
IID_undocumented
,
riid
))
return
E_NOINTERFACE
;
if
(
*
ppv
)
return
S_OK
;
...
...
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