Commit e950ec2c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

quartz: Remove WINAPI on static functions where not needed.

parent efe44b57
...@@ -283,7 +283,7 @@ static HRESULT DSoundRender_SendSampleData(struct dsound_render *This, ...@@ -283,7 +283,7 @@ static HRESULT DSoundRender_SendSampleData(struct dsound_render *This,
return S_OK; 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; HRESULT hr;
AM_MEDIA_TYPE *amt; AM_MEDIA_TYPE *amt;
...@@ -320,7 +320,7 @@ static HRESULT WINAPI DSoundRender_PrepareReceive(struct dsound_render *This, IM ...@@ -320,7 +320,7 @@ static HRESULT WINAPI DSoundRender_PrepareReceive(struct dsound_render *This, IM
return S_OK; 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; LPBYTE pbSrcStream = NULL;
LONG cbSrcStream = 0; LONG cbSrcStream = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment