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
53cd694e
Commit
53cd694e
authored
Feb 28, 2019
by
Andrew Eikum
Committed by
Alexandre Julliard
Feb 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xaudio2: IXAPO::Process out parameter should not be const.
Signed-off-by:
Andrew Eikum
<
aeikum@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
dac7441b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
xapo.c
dlls/xaudio2_7/xapo.c
+1
-1
xapo.idl
include/xapo.idl
+1
-1
No files found.
dlls/xaudio2_7/xapo.c
View file @
53cd694e
...
@@ -175,7 +175,7 @@ static void WINAPI XAPOFX_UnlockForProcess(IXAPO *iface)
...
@@ -175,7 +175,7 @@ static void WINAPI XAPOFX_UnlockForProcess(IXAPO *iface)
static
void
WINAPI
XAPOFX_Process
(
IXAPO
*
iface
,
UINT32
in_params_count
,
static
void
WINAPI
XAPOFX_Process
(
IXAPO
*
iface
,
UINT32
in_params_count
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
in_params
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
in_params
,
UINT32
out_params_count
,
UINT32
out_params_count
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
out_params
,
BOOL
enabled
)
XAPO_PROCESS_BUFFER_PARAMETERS
*
out_params
,
BOOL
enabled
)
{
{
XA2XAPOFXImpl
*
This
=
impl_from_IXAPO
(
iface
);
XA2XAPOFXImpl
*
This
=
impl_from_IXAPO
(
iface
);
TRACE
(
"%p, %u, %p, %u, %p, %u
\n
"
,
This
,
in_params_count
,
in_params
,
TRACE
(
"%p, %u, %p, %u, %p, %u
\n
"
,
This
,
in_params_count
,
in_params
,
...
...
include/xapo.idl
View file @
53cd694e
...
@@ -118,7 +118,7 @@ interface IXAPO : IUnknown
...
@@ -118,7 +118,7 @@ interface IXAPO : IUnknown
void
UnlockForProcess
(
void
)
;
void
UnlockForProcess
(
void
)
;
void
Process
(
UINT32
in_params_count
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
in_params
,
void
Process
(
UINT32
in_params_count
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
in_params
,
UINT32
out_params_count
,
const
XAPO_PROCESS_BUFFER_PARAMETERS
*
out_params
,
UINT32
out_params_count
,
XAPO_PROCESS_BUFFER_PARAMETERS
*
out_params
,
BOOL
enabled
)
;
BOOL
enabled
)
;
UINT32
CalcInputFrames
(
UINT32
output_frames
)
;
UINT32
CalcInputFrames
(
UINT32
output_frames
)
;
...
...
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