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
1bdf94a4
Commit
1bdf94a4
authored
Jan 26, 2024
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 29, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Fix IDirectMusicAudioPath::GetObjectInPath() prototype.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
b2441ad6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
audiopath.c
dlls/dmime/audiopath.c
+2
-2
dmusici.h
include/dmusici.h
+1
-1
No files found.
dlls/dmime/audiopath.c
View file @
1bdf94a4
...
...
@@ -140,12 +140,12 @@ static ULONG WINAPI IDirectMusicAudioPathImpl_Release (IDirectMusicAudioPath *if
}
static
HRESULT
WINAPI
IDirectMusicAudioPathImpl_GetObjectInPath
(
IDirectMusicAudioPath
*
iface
,
DWORD
dwPChannel
,
DWORD
dwStage
,
DWORD
dwBuffer
,
REFGUID
guidObject
,
WORD
dwIndex
,
REFGUID
iidInterface
,
void
**
ppObject
)
REFGUID
guidObject
,
D
WORD
dwIndex
,
REFGUID
iidInterface
,
void
**
ppObject
)
{
struct
IDirectMusicAudioPathImpl
*
This
=
impl_from_IDirectMusicAudioPath
(
iface
);
HRESULT
hr
;
FIXME
(
"(%p, %ld, %ld, %ld, %s, %d, %s, %p): stub
\n
"
,
This
,
dwPChannel
,
dwStage
,
dwBuffer
,
debugstr_dmguid
(
guidObject
),
FIXME
(
"(%p, %ld, %ld, %ld, %s, %
l
d, %s, %p): stub
\n
"
,
This
,
dwPChannel
,
dwStage
,
dwBuffer
,
debugstr_dmguid
(
guidObject
),
dwIndex
,
debugstr_dmguid
(
iidInterface
),
ppObject
);
switch
(
dwStage
)
{
...
...
include/dmusici.h
View file @
1bdf94a4
...
...
@@ -1177,7 +1177,7 @@ DECLARE_INTERFACE_(IDirectMusicAudioPath,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirectMusicAudioPath methods ***/
STDMETHOD
(
GetObjectInPath
)(
THIS_
DWORD
dwPChannel
,
DWORD
dwStage
,
DWORD
dwBuffer
,
REFGUID
guidObject
,
WORD
dwIndex
,
REFGUID
iidInterface
,
void
**
ppObject
)
PURE
;
STDMETHOD
(
GetObjectInPath
)(
THIS_
DWORD
dwPChannel
,
DWORD
dwStage
,
DWORD
dwBuffer
,
REFGUID
guidObject
,
D
WORD
dwIndex
,
REFGUID
iidInterface
,
void
**
ppObject
)
PURE
;
STDMETHOD
(
Activate
)(
THIS_
BOOL
fActivate
)
PURE
;
STDMETHOD
(
SetVolume
)(
THIS_
LONG
lVolume
,
DWORD
dwDuration
)
PURE
;
STDMETHOD
(
ConvertPChannel
)(
THIS_
DWORD
dwPChannelIn
,
DWORD
*
pdwPChannelOut
)
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