From 2fb89a4e36f6101182615f6b9d613577ef8f10e1 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 1 Oct 2008 11:21:11 +0100 Subject: [PATCH] quartz: Fix placement of WINAPI attribute in fnFoundSeek typedef. MSVC requires that calling conventions appear inside the brackets. --- dlls/quartz/filtergraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 42b6da87b09..c9e4e56a110 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -2091,7 +2091,7 @@ static ULONG WINAPI MediaSeeking_Release(IMediaSeeking *iface) { return Filtergraph_Release(This); } -typedef HRESULT WINAPI (*fnFoundSeek)(IFilterGraphImpl *This, IMediaSeeking*, DWORD_PTR arg); +typedef HRESULT (WINAPI *fnFoundSeek)(IFilterGraphImpl *This, IMediaSeeking*, DWORD_PTR arg); static HRESULT all_renderers_seek(IFilterGraphImpl *This, fnFoundSeek FoundSeek, DWORD_PTR arg) { BOOL allnotimpl = TRUE; -- 2.11.4.GIT