Commit 34355603 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

oleaut32: Implement GetTypeInfoCount for standard fonts.

parent 9648b824
......@@ -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;
}
/************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment