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
423ffdd1
Commit
423ffdd1
authored
Mar 01, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Mar 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw/tests: Detect more interfaces in the webbrowser test.
parent
41c0d35a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+11
-3
No files found.
dlls/shdocvw/tests/webbrowser.c
View file @
423ffdd1
...
...
@@ -1355,14 +1355,22 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
*
ppv
=
&
Dispatch
;
else
if
(
IsEqualGUID
(
&
IID_IServiceProvider
,
riid
))
*
ppv
=
&
ServiceProvider
;
else
if
(
IsEqualGUID
(
&
IID_IDocHostShowUI
,
riid
))
trace
(
"interface IID_IDocHostShowUI
\n
"
);
else
if
(
IsEqualGUID
(
&
IID_IOleControlSite
,
riid
))
trace
(
"interface IID_IOleControlSite
\n
"
);
else
if
(
IsEqualGUID
(
&
IID_IOleCommandTarget
,
riid
))
trace
(
"interface IID_IOleCommandTarget
\n
"
);
if
(
*
ppv
)
return
S_OK
;
/* B6EA2050-048A-11D1-82B9-00C04FB9942E IAxWinHostWindow */
else
{
/* are there more interfaces, that a host can support? */
trace
(
"%s: interface not supported
\n
"
,
debugstr_guid
(
riid
));
}
return
E_NOINTERFACE
;
return
(
*
ppv
)
?
S_OK
:
E_NOINTERFACE
;
}
static
LRESULT
WINAPI
wnd_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
...
...
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