oleaut32: Implement GetTypeInfoCount for standard fonts.

This commit is contained in:
Robert Shearman 2006-07-28 01:26:01 +01:00 committed by Alexandre Julliard
parent 9648b824a1
commit 3435560317
1 changed files with 3 additions and 2 deletions

View File

@ -1299,9 +1299,10 @@ static HRESULT WINAPI OLEFontImpl_GetTypeInfoCount(
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;
}
/************************************************************************