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
cd8c46f9
Commit
cd8c46f9
authored
May 26, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xactengine: Correct interfaces for IXACT3Cue.
parent
fce615a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
xact_dll.c
dlls/xactengine3_7/xact_dll.c
+2
-2
xact3.h
include/xact3.h
+2
-0
No files found.
dlls/xactengine3_7/xact_dll.c
View file @
cd8c46f9
...
...
@@ -316,7 +316,7 @@ static HRESULT WINAPI IXACT3CueImpl_GetProperties(IXACT3Cue *iface,
}
#endif
#if XACT3_VER >= 0x030
0
#if XACT3_VER >= 0x030
5
static
HRESULT
WINAPI
IXACT3CueImpl_SetOutputVoices
(
IXACT3Cue
*
iface
,
const
XAUDIO2_VOICE_SENDS
*
pSendList
)
{
...
...
@@ -356,7 +356,7 @@ static const IXACT3CueVtbl XACT3Cue_Vtbl =
#if XACT3_VER >= 0x0205
IXACT3CueImpl_GetProperties
,
#endif
#if XACT3_VER >= 0x030
0
#if XACT3_VER >= 0x030
5
IXACT3CueImpl_SetOutputVoices
,
IXACT3CueImpl_SetOutputVoiceMatrix
#endif
...
...
include/xact3.h
View file @
cd8c46f9
...
...
@@ -487,8 +487,10 @@ DECLARE_INTERFACE(IXACT3Cue)
STDMETHOD
(
GetVariable
)(
THIS_
XACTVARIABLEINDEX
nIndex
,
XACTVARIABLEVALUE
*
nValue
)
PURE
;
STDMETHOD
(
Pause
)(
THIS_
BOOL
fPause
)
PURE
;
STDMETHOD
(
GetProperties
)(
THIS_
LPXACT_CUE_INSTANCE_PROPERTIES
*
ppProperties
)
PURE
;
#if XACT3_VER >= 0x0305
STDMETHOD
(
SetOutputVoices
)(
THIS_
const
XAUDIO2_VOICE_SENDS
*
pSendList
)
PURE
;
STDMETHOD
(
SetOutputVoiceMatrix
)(
THIS_
IXAudio2Voice
*
pDestinationVoice
,
UINT32
SourceChannels
,
UINT32
DestinationChannels
,
const
float
*
pLevelMatrix
)
PURE
;
#endif
};
#undef INTERFACE
...
...
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