oleaut32: Implement GetTypeInfoCount for standard fonts.
This commit is contained in:
parent
9648b824a1
commit
3435560317
|
@ -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;
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
|
Loading…
Reference in New Issue