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
36c40e53
Commit
36c40e53
authored
Nov 13, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Fix a few failures on Win95 and NT4.
parent
f8b8478f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
misc.c
dlls/quartz/tests/misc.c
+11
-1
No files found.
dlls/quartz/tests/misc.c
View file @
36c40e53
...
...
@@ -95,7 +95,17 @@ static void test_aggregation(const CLSID clsidOuter, const CLSID clsidInner,
/* these QueryInterface calls should work */
QI_SUCCEED
(
pUnkOuter
,
iidOuter
,
pUnkAggregator
);
QI_SUCCEED
(
pUnkOuter
,
IID_IUnknown
,
pUnkOuterTest
);
QI_SUCCEED
(
pUnkInner
,
iidInner
,
pUnkAggregatee
);
/* IGraphConfig interface comes with DirectShow 9 */
if
(
IsEqualGUID
(
&
IID_IGraphConfig
,
&
iidInner
))
{
hr
=
IUnknown_QueryInterface
(
pUnkInner
,
&
iidInner
,
(
LPVOID
*
)
&
pUnkAggregatee
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
E_NOINTERFACE
),
"IUnknown_QueryInterface returned %x
\n
"
,
hr
);
ok
(
pUnkAggregatee
!=
NULL
||
broken
(
!
pUnkAggregatee
),
"Pointer is NULL
\n
"
);
}
else
{
QI_SUCCEED
(
pUnkInner
,
iidInner
,
pUnkAggregatee
);
}
QI_SUCCEED
(
pUnkInner
,
IID_IUnknown
,
pUnkInnerTest
);
if
(
!
pUnkAggregator
||
!
pUnkOuterTest
||
!
pUnkAggregatee
...
...
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