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
acea60ca
Commit
acea60ca
authored
Apr 21, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Apr 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Fix IDirectMusic8Impl_CreateMusicBuffer buffer signature.
parent
9095669c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
dmusic.c
dlls/dmusic/dmusic.c
+2
-1
dmusicc.h
include/dmusicc.h
+2
-2
No files found.
dlls/dmusic/dmusic.c
View file @
acea60ca
...
...
@@ -153,7 +153,8 @@ 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
pUnkOuter
)
{
static
HRESULT
WINAPI
IDirectMusic8Impl_CreateMusicBuffer
(
LPDIRECTMUSIC8
iface
,
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
ppBuffer
,
LPUNKNOWN
pUnkOuter
)
{
IDirectMusic8Impl
*
This
=
(
IDirectMusic8Impl
*
)
iface
;
TRACE
(
"(%p, %p, %p, %p)
\n
"
,
This
,
pBufferDesc
,
ppBuffer
,
pUnkOuter
);
...
...
include/dmusicc.h
View file @
acea60ca
...
...
@@ -378,7 +378,7 @@ DECLARE_INTERFACE_(IDirectMusic,IUnknown)
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirectMusic methods ***/
STDMETHOD
(
EnumPort
)(
THIS_
DWORD
dwIndex
,
LPDMUS_PORTCAPS
pPortCaps
)
PURE
;
STDMETHOD
(
CreateMusicBuffer
)(
THIS_
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
*
ppBuffer
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
CreateMusicBuffer
)(
THIS_
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
ppBuffer
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
CreatePort
)(
THIS_
REFCLSID
rclsidPort
,
LPDMUS_PORTPARAMS
pPortParams
,
LPDIRECTMUSICPORT
*
ppPort
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
EnumMasterClock
)(
THIS_
DWORD
dwIndex
,
LPDMUS_CLOCKINFO
lpClockInfo
)
PURE
;
STDMETHOD
(
GetMasterClock
)(
THIS_
LPGUID
pguidClock
,
struct
IReferenceClock
**
ppReferenceClock
)
PURE
;
...
...
@@ -419,7 +419,7 @@ DECLARE_INTERFACE_(IDirectMusic8,IDirectMusic)
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirectMusic methods ***/
STDMETHOD
(
EnumPort
)(
THIS_
DWORD
dwIndex
,
LPDMUS_PORTCAPS
pPortCaps
)
PURE
;
STDMETHOD
(
CreateMusicBuffer
)(
THIS_
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
*
ppBuffer
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
CreateMusicBuffer
)(
THIS_
LPDMUS_BUFFERDESC
pBufferDesc
,
LPDIRECTMUSICBUFFER
*
ppBuffer
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
CreatePort
)(
THIS_
REFCLSID
rclsidPort
,
LPDMUS_PORTPARAMS
pPortParams
,
LPDIRECTMUSICPORT
*
ppPort
,
LPUNKNOWN
pUnkOuter
)
PURE
;
STDMETHOD
(
EnumMasterClock
)(
THIS_
DWORD
dwIndex
,
LPDMUS_CLOCKINFO
lpClockInfo
)
PURE
;
STDMETHOD
(
GetMasterClock
)(
THIS_
LPGUID
pguidClock
,
struct
IReferenceClock
**
ppReferenceClock
)
PURE
;
...
...
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