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
4262ecf9
Commit
4262ecf9
authored
Sep 20, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Sep 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Rename params of SynthPortImpl_IDirectMusicPort_DownloadInstrument.
parent
57e6d416
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
port.c
dlls/dmusic/port.c
+6
-6
No files found.
dlls/dmusic/port.c
View file @
4262ecf9
...
...
@@ -146,16 +146,16 @@ static HRESULT WINAPI SynthPortImpl_IDirectMusicPort_Read(LPDIRECTMUSICPORT ifac
return
S_OK
;
}
static
HRESULT
WINAPI
SynthPortImpl_IDirectMusicPort_DownloadInstrument
(
LPDIRECTMUSICPORT
iface
,
IDirectMusicInstrument
*
pInstrument
,
IDirectMusicDownloadedInstrument
**
ppDownloadedInstrument
,
DMUS_NOTERANGE
*
pNoteRanges
,
DWORD
dwNumNoteR
anges
)
static
HRESULT
WINAPI
SynthPortImpl_IDirectMusicPort_DownloadInstrument
(
LPDIRECTMUSICPORT
iface
,
IDirectMusicInstrument
*
instrument
,
IDirectMusicDownloadedInstrument
**
downloaded_instrument
,
DMUS_NOTERANGE
*
note_ranges
,
DWORD
num_note_r
anges
)
{
SynthPortImpl
*
This
=
impl_from_SynthPortImpl_IDirectMusicPort
(
iface
);
SynthPortImpl
*
This
=
impl_from_SynthPortImpl_IDirectMusicPort
(
iface
);
FIXME
(
"(%p, %p, %p, %p, %d): stub
\n
"
,
This
,
pInstrument
,
ppDownloadedInstrument
,
pNoteRanges
,
dwNumNoteR
anges
);
FIXME
(
"(%p/%p)->(%p, %p, %p, %d): stub
\n
"
,
iface
,
This
,
instrument
,
downloaded_instrument
,
note_ranges
,
num_note_r
anges
);
if
(
!
pInstrument
||
!
ppDownloadedInstrument
||
(
dwNumNoteRanges
&&
!
pNoteR
anges
))
return
E_POINTER
;
if
(
!
instrument
||
!
downloaded_instrument
||
(
num_note_ranges
&&
!
note_r
anges
))
return
E_POINTER
;
return
DMUSIC_CreateDirectMusicDownloadedInstrumentImpl
(
&
IID_IDirectMusicDownloadedInstrument
,
(
LPVOID
*
)
ppDownloadedI
nstrument
,
NULL
);
return
DMUSIC_CreateDirectMusicDownloadedInstrumentImpl
(
&
IID_IDirectMusicDownloadedInstrument
,
(
LPVOID
*
)
downloaded_i
nstrument
,
NULL
);
}
static
HRESULT
WINAPI
SynthPortImpl_IDirectMusicPort_UnloadInstrument
(
LPDIRECTMUSICPORT
iface
,
IDirectMusicDownloadedInstrument
*
downloaded_instrument
)
...
...
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