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
27c4ad3b
Commit
27c4ad3b
authored
Apr 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Apr 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Implement IAMMultiMediaStreamImpl_SetState.
parent
efff5abf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
amstream.c
dlls/amstream/amstream.c
+9
-3
No files found.
dlls/amstream/amstream.c
View file @
27c4ad3b
...
...
@@ -184,13 +184,19 @@ static HRESULT WINAPI IAMMultiMediaStreamImpl_GetState(IAMMultiMediaStream* ifac
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_SetState
(
IAMMultiMediaStream
*
iface
,
STREAM_STATE
NewS
tate
)
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_SetState
(
IAMMultiMediaStream
*
iface
,
STREAM_STATE
new_s
tate
)
{
IAMMultiMediaStreamImpl
*
This
=
impl_from_IAMMultiMediaStream
(
iface
);
HRESULT
hr
=
E_INVALIDARG
;
FIXME
(
"(%p/%p)->() stub!
\n
"
,
This
,
ifac
e
);
TRACE
(
"(%p/%p)->(%u)
\n
"
,
This
,
iface
,
new_stat
e
);
return
E_NOTIMPL
;
if
(
STREAMSTATE_RUN
)
hr
=
IMediaControl_Run
(
This
->
media_control
);
else
if
(
STREAMSTATE_STOP
)
hr
=
IMediaControl_Stop
(
This
->
media_control
);
return
hr
;
}
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_GetTime
(
IAMMultiMediaStream
*
iface
,
STREAM_TIME
*
pCurrentTime
)
...
...
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