Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
27685ada
Commit
27685ada
authored
Nov 13, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 13, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Correct tests.
parent
e4ef9c5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+7
-7
No files found.
dlls/shdocvw/tests/webbrowser.c
View file @
27685ada
...
...
@@ -1988,31 +1988,31 @@ static void test_QueryInterface(IUnknown *unk)
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IQuickActivate
,
(
void
**
)
&
qa
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
qa
==
NULL
,
"qa=%p, e
z
pected NULL
\n
"
,
qa
);
ok
(
qa
==
NULL
,
"qa=%p, e
x
pected NULL
\n
"
,
qa
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IRunnableObject
,
(
void
**
)
&
runnable
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
runnable
==
NULL
,
"runnable=%p, e
z
pected NULL
\n
"
,
runnable
);
ok
(
runnable
==
NULL
,
"runnable=%p, e
x
pected NULL
\n
"
,
runnable
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IPerPropertyBrowsing
,
(
void
**
)
&
propbrowse
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
propbrowse
==
NULL
,
"propbrowse=%p, e
zpected NULL
\n
"
,
runnabl
e
);
ok
(
propbrowse
==
NULL
,
"propbrowse=%p, e
xpected NULL
\n
"
,
propbrows
e
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IOleCache
,
(
void
**
)
&
cache
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
cache
==
NULL
,
"cache=%p, e
zpected NULL
\n
"
,
runnabl
e
);
ok
(
cache
==
NULL
,
"cache=%p, e
xpected NULL
\n
"
,
cach
e
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IOleInPlaceSite
,
(
void
**
)
&
inplace
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
inplace
==
NULL
,
"inplace=%p, e
zpected NULL
\n
"
,
runnabl
e
);
ok
(
inplace
==
NULL
,
"inplace=%p, e
xpected NULL
\n
"
,
inplac
e
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IObjectWithSite
,
(
void
**
)
&
site
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
site
==
NULL
,
"
inplace=%p, ezpected NULL
\n
"
,
runnabl
e
);
ok
(
site
==
NULL
,
"
site=%p, expected NULL
\n
"
,
sit
e
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IViewObjectEx
,
(
void
**
)
&
viewex
);
ok
(
hres
==
E_NOINTERFACE
,
"QueryInterface returned %08x, expected E_NOINTERFACE
\n
"
,
hres
);
ok
(
viewex
==
NULL
,
"viewex=%p, e
zpected NULL
\n
"
,
runnable
);
ok
(
viewex
==
NULL
,
"viewex=%p, e
xpected NULL
\n
"
,
viewex
);
}
...
...
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