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
f9dff8f1
Commit
f9dff8f1
authored
Nov 21, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 21, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmscript: Implement unimplemented Script track methods.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c56116aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
21 deletions
+27
-21
scripttrack.c
dlls/dmscript/scripttrack.c
+27
-21
No files found.
dlls/dmscript/scripttrack.c
View file @
f9dff8f1
...
...
@@ -149,20 +149,22 @@ static HRESULT WINAPI script_track_IsParamSupported(IDirectMusicTrack8 *iface, R
return
DMUS_E_TYPE_UNSUPPORTED
;
}
static
HRESULT
WINAPI
script_track_AddNotificationType
(
IDirectMusicTrack8
*
iface
,
REFGUID
rguidNotificationType
)
static
HRESULT
WINAPI
script_track_AddNotificationType
(
IDirectMusicTrack8
*
iface
,
REFGUID
type
)
{
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %s): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidNotificationType
));
return
S_OK
;
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %s): method not implemented
\n
"
,
This
,
debugstr_dmguid
(
type
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
script_track_RemoveNotificationType
(
IDirectMusicTrack8
*
iface
,
REFGUID
rguidNotificationType
)
static
HRESULT
WINAPI
script_track_RemoveNotificationType
(
IDirectMusicTrack8
*
iface
,
REFGUID
type
)
{
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %s): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidNotificationType
));
return
S_OK
;
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %s): method not implemented
\n
"
,
This
,
debugstr_dmguid
(
type
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
script_track_Clone
(
IDirectMusicTrack8
*
iface
,
MUSIC_TIME
mtStart
,
...
...
@@ -202,21 +204,25 @@ static HRESULT WINAPI script_track_SetParamEx(IDirectMusicTrack8 *iface, REFGUID
return
S_OK
;
}
static
HRESULT
WINAPI
script_track_Compose
(
IDirectMusicTrack8
*
iface
,
IUnknown
*
pC
ontext
,
DWORD
dwTrackGroup
,
IDirectMusicTrack
**
ppResultT
rack
)
static
HRESULT
WINAPI
script_track_Compose
(
IDirectMusicTrack8
*
iface
,
IUnknown
*
c
ontext
,
DWORD
group
,
IDirectMusicTrack
**
res_t
rack
)
{
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %p, %d, %p): stub
\n
"
,
This
,
pContext
,
dwTrackGroup
,
ppResultTrack
);
return
S_OK
;
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %p, %d, %p): method not implemented
\n
"
,
This
,
context
,
group
,
res_track
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
script_track_Join
(
IDirectMusicTrack8
*
iface
,
IDirectMusicTrack
*
pNewTrack
,
MUSIC_TIME
mtJoin
,
IUnknown
*
pContext
,
DWORD
dwTrackGroup
,
IDirectMusicTrack
**
ppResultTrack
)
static
HRESULT
WINAPI
script_track_Join
(
IDirectMusicTrack8
*
iface
,
IDirectMusicTrack
*
track2
,
MUSIC_TIME
join
,
IUnknown
*
context
,
DWORD
group
,
IDirectMusicTrack
**
res_track
)
{
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
FIXME
(
"(%p, %p, %d, %p, %d, %p): stub
\n
"
,
This
,
pNewTrack
,
mtJoin
,
pContext
,
dwTrackGroup
,
ppResultTrack
);
return
S_OK
;
DirectMusicScriptTrack
*
This
=
impl_from_IDirectMusicTrack8
(
iface
);
TRACE
(
"(%p, %p, %d, %p, %d, %p): method not implemented
\n
"
,
This
,
track2
,
join
,
context
,
group
,
res_track
);
return
E_NOTIMPL
;
}
static
const
IDirectMusicTrack8Vtbl
dmtrack8_vtbl
=
{
...
...
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