Module: wine Branch: master Commit: a110e6e433e5e927b610514e9c6d0a419e9f7da8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a110e6e433e5e927b610514e9c...
Author: Chris Robinson chris.kcat@gmail.com Date: Mon Mar 26 01:18:17 2007 -0700
quartz: Return proper CLSID for parser filters.
---
dlls/quartz/parser.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/quartz/parser.c b/dlls/quartz/parser.c index 15e01e8..e1f2c62 100644 --- a/dlls/quartz/parser.c +++ b/dlls/quartz/parser.c @@ -223,9 +223,11 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
static HRESULT WINAPI Parser_GetClassID(IBaseFilter * iface, CLSID * pClsid) { + ParserImpl *This = (ParserImpl *)iface; + TRACE("(%p)\n", pClsid);
- *pClsid = CLSID_AviSplitter; + *pClsid = This->clsid;
return S_OK; }