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
92aaba0d
Commit
92aaba0d
authored
Mar 03, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Mar 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Return the proper interface for IFilterMapper.
parent
6f7a212c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
filtermapper.c
dlls/quartz/filtermapper.c
+16
-0
main.c
dlls/quartz/main.c
+1
-1
quartz_private.h
dlls/quartz/quartz_private.h
+1
-0
No files found.
dlls/quartz/filtermapper.c
View file @
92aaba0d
...
...
@@ -180,6 +180,22 @@ HRESULT FilterMapper2_create(IUnknown *pUnkOuter, LPVOID *ppObj)
return
S_OK
;
}
HRESULT
FilterMapper_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
FilterMapper2Impl
*
pFM2impl
;
HRESULT
hr
;
TRACE
(
"(%p, %p)
\n
"
,
pUnkOuter
,
ppObj
);
hr
=
FilterMapper2_create
(
pUnkOuter
,
(
LPVOID
*
)
&
pFM2impl
);
if
(
FAILED
(
hr
))
return
hr
;
*
ppObj
=
&
pFM2impl
->
lpVtblFilterMapper
;
return
hr
;
}
/*** IUnknown methods ***/
static
HRESULT
WINAPI
FilterMapper2_QueryInterface
(
IFilterMapper2
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
...
...
dlls/quartz/main.c
View file @
92aaba0d
...
...
@@ -62,7 +62,7 @@ static const struct object_creation_info object_creation[] =
{
{
&
CLSID_FilterGraph
,
FilterGraph_create
},
{
&
CLSID_FilterGraphNoThread
,
FilterGraphNoThread_create
},
{
&
CLSID_FilterMapper
,
FilterMapper
2
_create
},
{
&
CLSID_FilterMapper
,
FilterMapper_create
},
{
&
CLSID_FilterMapper2
,
FilterMapper2_create
},
{
&
CLSID_AsyncReader
,
AsyncReader_create
},
{
&
CLSID_MemoryAllocator
,
StdMemAllocator_create
},
...
...
dlls/quartz/quartz_private.h
View file @
92aaba0d
...
...
@@ -44,6 +44,7 @@
HRESULT
FilterGraph_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
FilterGraphNoThread_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
FilterMapper2_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
FilterMapper_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
AsyncReader_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
StdMemAllocator_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
AVISplitter_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
...
...
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