quartz: Fix placement of WINAPI attribute in fnFoundSeek typedef.

MSVC requires that calling conventions appear inside the brackets.
This commit is contained in:
Rob Shearman 2008-10-01 11:21:11 +01:00 committed by Alexandre Julliard
parent e7ecfe28a1
commit 2fb89a4e36
1 changed files with 1 additions and 1 deletions

View File

@ -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;