Module: wine Branch: refs/heads/master Commit: 3435560317671e72ac1ff3a171ff079a2aab8304 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3435560317671e72ac1ff3a1...
Author: Robert Shearman rob@codeweavers.com Date: Fri Jul 28 01:26:01 2006 +0100
oleaut32: Implement GetTypeInfoCount for standard fonts.
---
dlls/oleaut32/olefont.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c index 880e740..bdde164 100644 --- a/dlls/oleaut32/olefont.c +++ b/dlls/oleaut32/olefont.c @@ -1299,9 +1299,10 @@ static HRESULT WINAPI OLEFontImpl_GetTyp unsigned int* pctinfo) { OLEFontImpl *this = impl_from_IDispatch(iface); - FIXME("(%p)->(%p): Stub\n", this, pctinfo); + TRACE("(%p)->(%p)\n", this, pctinfo); + *pctinfo = 1;
- return E_NOTIMPL; + return S_OK; }
/************************************************************************