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
e429e039
Commit
e429e039
authored
Jun 22, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Better test of QueryInterface.
parent
0cf10bb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
8 deletions
+29
-8
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+29
-8
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
e429e039
...
...
@@ -21,6 +21,7 @@
#include <wine/test.h>
#include <stdarg.h>
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
...
...
@@ -165,6 +166,18 @@ static const WCHAR wszTimesNewRoman[] =
static
const
WCHAR
wszArial
[]
=
{
'A'
,
'r'
,
'i'
,
'a'
,
'l'
,
0
};
static
const
char
*
debugstr_guid
(
REFIID
riid
)
{
static
char
buf
[
50
];
sprintf
(
buf
,
"{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}"
,
riid
->
Data1
,
riid
->
Data2
,
riid
->
Data3
,
riid
->
Data4
[
0
],
riid
->
Data4
[
1
],
riid
->
Data4
[
2
],
riid
->
Data4
[
3
],
riid
->
Data4
[
4
],
riid
->
Data4
[
5
],
riid
->
Data4
[
6
],
riid
->
Data4
[
7
]);
return
buf
;
}
#define EXPECT_UPDATEUI 1
#define EXPECT_SETTITLE 2
...
...
@@ -2178,6 +2191,10 @@ static const IServiceProviderVtbl ServiceProviderVtbl = {
static
IServiceProvider
ServiceProvider
=
{
&
ServiceProviderVtbl
};
DEFINE_GUID
(
IID_unk1
,
0xD48A6EC6
,
0x6A4A
,
0x11CF
,
0x94
,
0xA7
,
0x44
,
0x45
,
0x53
,
0x54
,
0x00
,
0x00
);
/* HTMLWindow2 ? */
DEFINE_GUID
(
IID_unk2
,
0x7BB0B520
,
0xB1A7
,
0x11D2
,
0xBB
,
0x23
,
0x00
,
0xC0
,
0x4F
,
0x79
,
0xAB
,
0xCD
);
DEFINE_GUID
(
IID_unk3
,
0x000670BA
,
0x0000
,
0x0000
,
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
);
static
HRESULT
QueryInterface
(
REFIID
riid
,
void
**
ppv
)
{
*
ppv
=
NULL
;
...
...
@@ -2200,16 +2217,20 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
*
ppv
=
&
Dispatch
;
else
if
(
IsEqualGUID
(
&
IID_IServiceProvider
,
riid
))
*
ppv
=
&
ServiceProvider
;
else
if
(
ipsex
&&
IsEqualGUID
(
&
IID_IOleInPlaceSiteEx
,
riid
))
*
ppv
=
&
InPlaceSiteEx
;
else
if
(
IsEqualGUID
(
&
IID_IOleInPlaceSiteEx
,
riid
))
*
ppv
=
ipsex
?
&
InPlaceSiteEx
:
NULL
;
else
if
(
IsEqualGUID
(
&
IID_IOleControlSite
,
riid
))
*
ppv
=
&
OleControlSite
;
/* TODO:
* {D48A6EC6-6A4A-11CF-94A7-444553540000}
* {7BB0B520-B1A7-11D2-BB23-00C04F79ABCD}
* {000670BA-0000-0000-C000-000000000046}
*/
else
if
(
IsEqualGUID
(
&
IID_IDocHostShowUI
,
riid
))
return
E_NOINTERFACE
;
/* TODO */
else
if
(
IsEqualGUID
(
&
IID_unk1
,
riid
))
return
E_NOINTERFACE
;
/* HTMLWindow2 ? */
else
if
(
IsEqualGUID
(
&
IID_unk2
,
riid
))
return
E_NOINTERFACE
;
/* ? */
else
if
(
IsEqualGUID
(
&
IID_unk3
,
riid
))
return
E_NOINTERFACE
;
/* ? */
else
ok
(
0
,
"unexpected riid %s
\n
"
,
debugstr_guid
(
riid
));
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