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
7251e91d
Commit
7251e91d
authored
Dec 23, 2009
by
Paul Chitescu
Committed by
Alexandre Julliard
Dec 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Implement NullRenderer's IBaseFilter::FindPin.
parent
5ded71ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
nullrenderer.c
dlls/quartz/nullrenderer.c
+11
-4
No files found.
dlls/quartz/nullrenderer.c
View file @
7251e91d
...
...
@@ -43,6 +43,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
const
WCHAR
wcsInputPinName
[]
=
{
'i'
,
'n'
,
'p'
,
'u'
,
't'
,
' '
,
'p'
,
'i'
,
'n'
,
0
};
static
const
WCHAR
wcsAltInputPinName
[]
=
{
'I'
,
'n'
,
0
};
static
const
IBaseFilterVtbl
NullRenderer_Vtbl
;
static
const
IUnknownVtbl
IInner_VTable
;
...
...
@@ -472,11 +473,17 @@ static HRESULT WINAPI NullRenderer_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin
TRACE
(
"(%p/%p)->(%p,%p)
\n
"
,
This
,
iface
,
debugstr_w
(
Id
),
ppPin
);
FIXME
(
"NullRenderer::FindPin(...)
\n
"
);
if
(
!
Id
||
!
ppPin
)
return
E_POINTER
;
/* FIXME: critical section */
return
E_NOTIMPL
;
if
(
!
lstrcmpiW
(
Id
,
wcsInputPinName
)
||
!
lstrcmpiW
(
Id
,
wcsAltInputPinName
))
{
*
ppPin
=
(
IPin
*
)
This
->
pInputPin
;
IPin_AddRef
(
*
ppPin
);
return
S_OK
;
}
*
ppPin
=
NULL
;
return
VFW_E_NOT_FOUND
;
}
static
HRESULT
WINAPI
NullRenderer_QueryFilterInfo
(
IBaseFilter
*
iface
,
FILTER_INFO
*
pInfo
)
...
...
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