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
82c64b9c
Commit
82c64b9c
authored
Oct 02, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
evr/presenter: Add missing method stubs.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3981be41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
presenter.c
dlls/evr/presenter.c
+48
-0
No files found.
dlls/evr/presenter.c
View file @
82c64b9c
...
...
@@ -563,6 +563,48 @@ static HRESULT WINAPI video_presenter_control_GetCurrentImage(IMFVideoDisplayCon
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_SetBorderColor
(
IMFVideoDisplayControl
*
iface
,
COLORREF
color
)
{
FIXME
(
"%p, %#x.
\n
"
,
iface
,
color
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_GetBorderColor
(
IMFVideoDisplayControl
*
iface
,
COLORREF
*
color
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
color
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_SetRenderingPrefs
(
IMFVideoDisplayControl
*
iface
,
DWORD
flags
)
{
FIXME
(
"%p, %#x.
\n
"
,
iface
,
flags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_GetRenderingPrefs
(
IMFVideoDisplayControl
*
iface
,
DWORD
*
flags
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
flags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_SetFullscreen
(
IMFVideoDisplayControl
*
iface
,
BOOL
fullscreen
)
{
FIXME
(
"%p, %d.
\n
"
,
iface
,
fullscreen
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_presenter_control_GetFullscreen
(
IMFVideoDisplayControl
*
iface
,
BOOL
*
fullscreen
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
fullscreen
);
return
E_NOTIMPL
;
}
static
const
IMFVideoDisplayControlVtbl
video_presenter_control_vtbl
=
{
video_presenter_control_QueryInterface
,
...
...
@@ -578,6 +620,12 @@ static const IMFVideoDisplayControlVtbl video_presenter_control_vtbl =
video_presenter_control_GetVideoWindow
,
video_presenter_control_RepaintVideo
,
video_presenter_control_GetCurrentImage
,
video_presenter_control_SetBorderColor
,
video_presenter_control_GetBorderColor
,
video_presenter_control_SetRenderingPrefs
,
video_presenter_control_GetRenderingPrefs
,
video_presenter_control_SetFullscreen
,
video_presenter_control_GetFullscreen
,
};
static
HRESULT
WINAPI
video_presenter_rate_support_QueryInterface
(
IMFRateSupport
*
iface
,
REFIID
riid
,
void
**
obj
)
...
...
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