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
cff26595
Commit
cff26595
authored
Dec 10, 2007
by
Lei Zhang
Committed by
Alexandre Julliard
Dec 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Add IFilterGraph2 interface and stubs.
parent
00b55015
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
filtergraph.c
dlls/quartz/filtergraph.c
+0
-0
filtergraph.c
dlls/quartz/tests/filtergraph.c
+5
-4
No files found.
dlls/quartz/filtergraph.c
View file @
cff26595
This diff is collapsed.
Click to expand it.
dlls/quartz/tests/filtergraph.c
View file @
cff26595
...
...
@@ -155,10 +155,11 @@ static void test_filter_graph2(void)
hr
=
CoCreateInstance
(
&
CLSID_FilterGraph
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IFilterGraph2
,
(
LPVOID
*
)
&
pF
);
todo_wine
{
ok
(
hr
==
S_OK
,
"CoCreateInstance failed with %x
\n
"
,
hr
);
ok
(
pF
!=
NULL
,
"pF is NULL
\n
"
);
}
ok
(
hr
==
S_OK
,
"CoCreateInstance failed with %x
\n
"
,
hr
);
ok
(
pF
!=
NULL
,
"pF is NULL
\n
"
);
hr
=
IFilterGraph2_Release
(
pF
);
ok
(
hr
==
0
,
"IFilterGraph2_Release returned: %x
\n
"
,
hr
);
}
START_TEST
(
filtergraph
)
...
...
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