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
340e1fee
Commit
340e1fee
authored
Jan 25, 2022
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 26, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Implement the E_NOTIMPL methods of the synth port.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ddb315bf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
15 deletions
+6
-15
port.c
dlls/dmusic/port.c
+6
-15
No files found.
dlls/dmusic/port.c
View file @
340e1fee
...
...
@@ -240,20 +240,14 @@ static HRESULT WINAPI synth_port_PlayBuffer(IDirectMusicPort *iface, IDirectMusi
static
HRESULT
WINAPI
synth_port_SetReadNotificationHandle
(
IDirectMusicPort
*
iface
,
HANDLE
event
)
{
struct
synth_port
*
This
=
synth_from_IDirectMusicPort
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
event
);
return
S_OK
;
TRACE
(
"(%p, %p): method not implemented
\n
"
,
iface
,
event
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
synth_port_Read
(
IDirectMusicPort
*
iface
,
IDirectMusicBuffer
*
buffer
)
{
struct
synth_port
*
This
=
synth_from_IDirectMusicPort
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
buffer
);
return
S_OK
;
TRACE
(
"(%p, %p): method not implemented
\n
"
,
iface
,
buffer
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
synth_port_DownloadInstrument
(
IDirectMusicPort
*
iface
,
IDirectMusicInstrument
*
instrument
,
...
...
@@ -384,11 +378,8 @@ static HRESULT WINAPI synth_port_GetRunningStats(IDirectMusicPort *iface, DMUS_S
static
HRESULT
WINAPI
synth_port_Compact
(
IDirectMusicPort
*
iface
)
{
struct
synth_port
*
This
=
synth_from_IDirectMusicPort
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
return
S_OK
;
TRACE
(
"(%p): method not implemented
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
synth_port_GetCaps
(
IDirectMusicPort
*
iface
,
DMUS_PORTCAPS
*
port_caps
)
...
...
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