xaudio2: IXAPO::Reset returns void.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a235530ac5
commit
ff9168a458
|
@ -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,
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue