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
72b3cb68
Commit
72b3cb68
authored
Nov 10, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Implement IWMReaderAdvanced::GetStreamSelected().
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1a51f54
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
wm_asyncreader.c
dlls/winegstreamer/wm_asyncreader.c
+7
-5
No files found.
dlls/winegstreamer/wm_asyncreader.c
View file @
72b3cb68
...
...
@@ -457,12 +457,14 @@ static HRESULT WINAPI WMReaderAdvanced_SetStreamsSelected(IWMReaderAdvanced6 *if
return
wm_reader_set_streams_selected
(
&
reader
->
reader
,
count
,
stream_numbers
,
selections
);
}
static
HRESULT
WINAPI
WMReaderAdvanced_GetStreamSelected
(
IWMReaderAdvanced6
*
iface
,
WORD
stream_num
,
WMT_STREAM_SELECTION
*
selection
)
static
HRESULT
WINAPI
WMReaderAdvanced_GetStreamSelected
(
IWMReaderAdvanced6
*
iface
,
W
ORD
stream_number
,
W
MT_STREAM_SELECTION
*
selection
)
{
struct
async_reader
*
This
=
impl_from_IWMReaderAdvanced6
(
iface
);
FIXME
(
"(%p)->(%d %p)
\n
"
,
This
,
stream_num
,
selection
);
return
E_NOTIMPL
;
struct
async_reader
*
reader
=
impl_from_IWMReaderAdvanced6
(
iface
);
TRACE
(
"reader %p, stream_number %u, selection %p.
\n
"
,
reader
,
stream_number
,
selection
);
return
wm_reader_get_stream_selection
(
&
reader
->
reader
,
stream_number
,
selection
);
}
static
HRESULT
WINAPI
WMReaderAdvanced_SetReceiveSelectionCallbacks
(
IWMReaderAdvanced6
*
iface
,
BOOL
get_callbacks
)
...
...
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