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
ff9168a4
Commit
ff9168a4
authored
Aug 09, 2018
by
Andrew Eikum
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xaudio2: IXAPO::Reset returns void.
Signed-off-by:
Andrew Eikum
<
aeikum@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a235530a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
7 deletions
+4
-7
xapofx.c
dlls/xaudio2_7/xapofx.c
+3
-6
xapo.idl
include/xapo.idl
+1
-1
No files found.
dlls/xaudio2_7/xapofx.c
View file @
ff9168a4
...
...
@@ -145,11 +145,10 @@ static HRESULT WINAPI VUMXAPO_Initialize(IXAPO *iface, const void *data,
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
VUMXAPO_Reset
(
IXAPO
*
iface
)
static
void
WINAPI
VUMXAPO_Reset
(
IXAPO
*
iface
)
{
VUMeterImpl
*
This
=
VUMeterImpl_from_IXAPO
(
iface
);
TRACE
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
VUMXAPO_LockForProcess
(
IXAPO
*
iface
,
...
...
@@ -347,11 +346,10 @@ static HRESULT WINAPI RVBXAPO_Initialize(IXAPO *iface, const void *data,
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RVBXAPO_Reset
(
IXAPO
*
iface
)
static
void
WINAPI
RVBXAPO_Reset
(
IXAPO
*
iface
)
{
ReverbImpl
*
This
=
ReverbImpl_from_IXAPO
(
iface
);
TRACE
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RVBXAPO_LockForProcess
(
IXAPO
*
iface
,
UINT32
in_params_count
,
...
...
@@ -548,11 +546,10 @@ static HRESULT WINAPI EQXAPO_Initialize(IXAPO *iface, const void *data,
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
EQXAPO_Reset
(
IXAPO
*
iface
)
static
void
WINAPI
EQXAPO_Reset
(
IXAPO
*
iface
)
{
EQImpl
*
This
=
EQImpl_from_IXAPO
(
iface
);
TRACE
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
EQXAPO_LockForProcess
(
IXAPO
*
iface
,
UINT32
in_params_count
,
...
...
include/xapo.idl
View file @
ff9168a4
...
...
@@ -110,7 +110,7 @@ interface IXAPO : IUnknown
HRESULT
Initialize
(
const
void
*
data
,
UINT32
data_len
)
;
HRESULT
Reset
(
void
)
;
void
Reset
(
void
)
;
HRESULT
LockForProcess
(
UINT32
in_params_count
,
const
XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS
*
in_params
,
UINT32
out_params_count
,
const
XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS
*
out_params
)
;
...
...
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