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
7180775a
Commit
7180775a
authored
May 05, 2005
by
Christian Costa
Committed by
Alexandre Julliard
May 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward CLSID_FilterGraphNoThread to CLSID_FilterGraph.
parent
034ebcc1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
3 deletions
+18
-3
filtergraph.c
dlls/quartz/filtergraph.c
+8
-1
main.c
dlls/quartz/main.c
+2
-1
quartz_private.h
dlls/quartz/quartz_private.h
+2
-1
regsvr.c
dlls/quartz/regsvr.c
+6
-0
No files found.
dlls/quartz/filtergraph.c
View file @
7180775a
...
...
@@ -3039,7 +3039,8 @@ static IMediaEventSinkVtbl IMediaEventSink_VTable =
};
/* This is the only function that actually creates a FilterGraph class... */
HRESULT
FILTERGRAPH_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
HRESULT
FilterGraph_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
IFilterGraphImpl
*
fimpl
;
HRESULT
hr
;
...
...
@@ -3084,3 +3085,9 @@ HRESULT FILTERGRAPH_create(IUnknown *pUnkOuter, LPVOID *ppObj) {
*
ppObj
=
fimpl
;
return
S_OK
;
}
HRESULT
FilterGraphNoThread_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
FIXME
(
"CLSID_FilterGraphNoThread partially implemented - Forwarding to CLSID_FilterGraph
\n
"
);
return
FilterGraph_create
(
pUnkOuter
,
ppObj
);
}
dlls/quartz/main.c
View file @
7180775a
...
...
@@ -60,7 +60,8 @@ struct object_creation_info
static
const
struct
object_creation_info
object_creation
[]
=
{
{
&
CLSID_FilterGraph
,
FILTERGRAPH_create
},
{
&
CLSID_FilterGraph
,
FilterGraph_create
},
{
&
CLSID_FilterGraphNoThread
,
FilterGraphNoThread_create
},
{
&
CLSID_FilterMapper
,
FilterMapper2_create
},
{
&
CLSID_FilterMapper2
,
FilterMapper2_create
},
{
&
CLSID_AsyncReader
,
AsyncReader_create
},
...
...
dlls/quartz/quartz_private.h
View file @
7180775a
...
...
@@ -41,7 +41,8 @@
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
HRESULT
FILTERGRAPH_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
;
HRESULT
FilterGraph_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
FilterGraphNoThread_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
FilterMapper2_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
AsyncReader_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
StdMemAllocator_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
...
...
dlls/quartz/regsvr.c
View file @
7180775a
...
...
@@ -850,6 +850,12 @@ static struct regsvr_coclass const coclass_list[] = {
"quartz.dll"
,
"Both"
},
{
&
CLSID_FilterGraphNoThread
,
"Filter Graph"
,
NULL
,
"quartz.dll"
,
"Both"
},
{
&
CLSID_FilterMapper
,
"Filter Mapper"
,
NULL
,
...
...
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