Francois Gouget : mf: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: bc20705c296e97dd9ac790b6f3bf95f4693b2430 URL: https://source.winehq.org/git/wine.git/?a=commit;h=bc20705c296e97dd9ac790b6f... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Sep 1 09:51:47 2021 +0200 mf: Remove WINAPI on static functions where not needed. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mf/evr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mf/evr.c b/dlls/mf/evr.c index 5730a6e769f..a5545c157de 100644 --- a/dlls/mf/evr.c +++ b/dlls/mf/evr.c @@ -638,7 +638,7 @@ static ULONG WINAPI video_stream_get_service_Release(IMFGetService *iface) return IMFStreamSink_Release(&stream->IMFStreamSink_iface); } -static HRESULT WINAPI video_stream_get_service(struct video_stream *stream, REFGUID service, REFIID riid, void **obj) +static HRESULT video_stream_get_service(struct video_stream *stream, REFGUID service, REFIID riid, void **obj) { HRESULT hr = S_OK;
participants (1)
-
Alexandre Julliard