Francois Gouget : mf: Remove WINAPI on static functions where not needed.

Alexandre Julliard julliard at winehq.org
Fri Sep 3 16:25:28 CDT 2021


Module: wine
Branch: master
Commit: bc20705c296e97dd9ac790b6f3bf95f4693b2430
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=bc20705c296e97dd9ac790b6f3bf95f4693b2430

Author: Francois Gouget <fgouget at 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 at free.fr>
Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at 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;
 




More information about the wine-cvs mailing list