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
e3383d17
Commit
e3383d17
authored
Apr 10, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 10, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Ignore &IID_IWebBrowserPriv2IE7 in wb_qi.
parent
55ff0661
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+6
-0
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
e3383d17
...
...
@@ -4977,6 +4977,7 @@ static IWebBrowser2 WebBrowser2 = { &WebBrowser2Vtbl };
static
HRESULT
wb_qi
(
REFIID
riid
,
void
**
ppv
)
{
static
const
IID
IID_IWebBrowserPriv2IE7
=
{
0x1af32b6c
,
0xa3ba
,
0x48b9
,{
0xb2
,
0x4e
,
0x8a
,
0xa9
,
0xc4
,
0x1f
,
0x6e
,
0xcd
}};
static
const
IID
IID_IWebBrowserPriv2IE8XP
=
{
0x486f6159
,
0x9f3f
,
0x4827
,{
0x82
,
0xd4
,
0x28
,
0x3c
,
0xef
,
0x39
,
0x77
,
0x33
}};
*
ppv
=
NULL
;
...
...
@@ -5006,6 +5007,11 @@ static HRESULT wb_qi(REFIID riid, void **ppv)
return
S_OK
;
}
if
(
IsEqualGUID
(
riid
,
&
IID_IWebBrowserPriv2IE7
))
{
trace
(
"QI(IID_IWebBrowserPriv2IE7)
\n
"
);
return
E_NOINTERFACE
;
}
if
(
IsEqualGUID
(
riid
,
&
IID_IWebBrowserPriv2IE8XP
))
{
trace
(
"QI(IID_IWebBrowserPriv2IE8XP)
\n
"
);
return
E_NOINTERFACE
;
...
...
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