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
c88fd286
Commit
c88fd286
authored
Dec 03, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Implement the ParamControl track param methods.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
85b96625
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
17 deletions
+16
-17
paramcontroltrack.c
dlls/dmime/paramcontroltrack.c
+16
-17
No files found.
dlls/dmime/paramcontroltrack.c
View file @
c88fd286
...
...
@@ -118,31 +118,30 @@ static HRESULT WINAPI paramcontrol_track_Play(IDirectMusicTrack8 *iface, void *p
return
S_OK
;
}
static
HRESULT
WINAPI
paramcontrol_track_GetParam
(
IDirectMusicTrack8
*
iface
,
REFGUID
rguidT
ype
,
MUSIC_TIME
mtTime
,
MUSIC_TIME
*
pmtNext
,
void
*
pP
aram
)
static
HRESULT
WINAPI
paramcontrol_track_GetParam
(
IDirectMusicTrack8
*
iface
,
REFGUID
t
ype
,
MUSIC_TIME
time
,
MUSIC_TIME
*
next
,
void
*
p
aram
)
{
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %s, %d, %p, %p): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidType
),
mtTime
,
pmtNext
,
pParam
);
return
S_OK
;
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %s, %d, %p, %p): not supported
\n
"
,
This
,
debugstr_dmguid
(
type
),
time
,
next
,
param
);
return
DMUS_E_GET_UNSUPPORTED
;
}
static
HRESULT
WINAPI
paramcontrol_track_SetParam
(
IDirectMusicTrack8
*
iface
,
REFGUID
rguidT
ype
,
MUSIC_TIME
mtTime
,
void
*
pP
aram
)
static
HRESULT
WINAPI
paramcontrol_track_SetParam
(
IDirectMusicTrack8
*
iface
,
REFGUID
t
ype
,
MUSIC_TIME
time
,
void
*
p
aram
)
{
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %s, %d, %p): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidType
),
mtTime
,
pParam
);
return
S_OK
;
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %s, %d, %p): not supported
\n
"
,
This
,
debugstr_dmguid
(
type
),
time
,
param
);
return
DMUS_E_SET_UNSUPPORTED
;
}
static
HRESULT
WINAPI
paramcontrol_track_IsParamSupported
(
IDirectMusicTrack8
*
iface
,
REFGUID
rguidType
)
static
HRESULT
WINAPI
paramcontrol_track_IsParamSupported
(
IDirectMusicTrack8
*
iface
,
REFGUID
type
)
{
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
IDirectMusicParamControlTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %s)
\n
"
,
This
,
debugstr_dmguid
(
rguidType
));
/* didn't find any params */
TRACE
(
"param unsupported
\n
"
);
return
DMUS_E_TYPE_UNSUPPORTED
;
TRACE
(
"(%p, %s): param type not supported
\n
"
,
This
,
debugstr_dmguid
(
type
));
return
DMUS_E_TYPE_UNSUPPORTED
;
}
static
HRESULT
WINAPI
paramcontrol_track_AddNotificationType
(
IDirectMusicTrack8
*
iface
,
...
...
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