quartz: Remove WINAPI on static functions where not needed.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-08-30 17:22:32 +02:00 committed by Alexandre Julliard
parent efe44b5702
commit e950ec2c3b

View file

@ -283,7 +283,7 @@ static HRESULT DSoundRender_SendSampleData(struct dsound_render *This,
return S_OK;
}
static HRESULT WINAPI DSoundRender_PrepareReceive(struct dsound_render *This, IMediaSample *pSample)
static HRESULT DSoundRender_PrepareReceive(struct dsound_render *This, IMediaSample *pSample)
{
HRESULT hr;
AM_MEDIA_TYPE *amt;
@ -320,7 +320,7 @@ static HRESULT WINAPI DSoundRender_PrepareReceive(struct dsound_render *This, IM
return S_OK;
}
static HRESULT WINAPI DSoundRender_DoRenderSample(struct dsound_render *This, IMediaSample *pSample)
static HRESULT DSoundRender_DoRenderSample(struct dsound_render *This, IMediaSample *pSample)
{
LPBYTE pbSrcStream = NULL;
LONG cbSrcStream = 0;