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
8c07215f
Commit
8c07215f
authored
Sep 16, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Sep 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Rename params in CreateMusicBuffer.
parent
87d7fe68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
dmusic.c
dlls/dmusic/dmusic.c
+8
-8
No files found.
dlls/dmusic/dmusic.c
View file @
8c07215f
...
...
@@ -168,19 +168,19 @@ static HRESULT WINAPI IDirectMusic8Impl_EnumPort(LPDIRECTMUSIC8 iface, DWORD ind
return
S_FALSE
;
}
static
HRESULT
WINAPI
IDirectMusic8Impl_CreateMusicBuffer
(
LPDIRECTMUSIC8
iface
,
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
ppBuffer
,
LPUNKNOWN
pUnkO
uter
)
static
HRESULT
WINAPI
IDirectMusic8Impl_CreateMusicBuffer
(
LPDIRECTMUSIC8
iface
,
LPDMUS_BUFFERDESC
buffer_desc
,
LPDIRECTMUSICBUFFER
*
buffer
,
LPUNKNOWN
unko
uter
)
{
IDirectMusic8Impl
*
This
=
impl_from_IDirectMusic8
(
iface
);
IDirectMusic8Impl
*
This
=
impl_from_IDirectMusic8
(
iface
);
TRACE
(
"(%p, %p, %p, %p)
\n
"
,
This
,
pBufferDesc
,
ppBuffer
,
pUnkO
uter
);
TRACE
(
"(%p)->(%p, %p, %p)
\n
"
,
This
,
buffer_desc
,
buffer
,
unko
uter
);
if
(
pUnkO
uter
)
return
CLASS_E_NOAGGREGATION
;
if
(
unko
uter
)
return
CLASS_E_NOAGGREGATION
;
if
(
!
pBufferDesc
||
!
ppB
uffer
)
return
E_POINTER
;
if
(
!
buffer_desc
||
!
b
uffer
)
return
E_POINTER
;
return
DMUSIC_CreateDirectMusicBufferImpl
(
pBufferDesc
,
(
LPVOID
)
ppB
uffer
);
return
DMUSIC_CreateDirectMusicBufferImpl
(
buffer_desc
,
(
LPVOID
)
b
uffer
);
}
static
HRESULT
WINAPI
IDirectMusic8Impl_CreatePort
(
LPDIRECTMUSIC8
iface
,
REFCLSID
rclsidPort
,
LPDMUS_PORTPARAMS
pPortParams
,
LPDIRECTMUSICPORT
*
ppPort
,
LPUNKNOWN
pUnkOuter
)
...
...
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