mshtml: Implement IHTMLStorage GetTypeInfoCount.
This commit is contained in:
parent
4be4ad8278
commit
cdcea0e8af
|
@ -95,8 +95,7 @@ static ULONG WINAPI HTMLStorage_Release(IHTMLStorage *iface)
|
|||
static HRESULT WINAPI HTMLStorage_GetTypeInfoCount(IHTMLStorage *iface, UINT *pctinfo)
|
||||
{
|
||||
HTMLStorage *This = impl_from_IHTMLStorage(iface);
|
||||
FIXME("(%p)->(%p)\n", This, pctinfo);
|
||||
return E_NOTIMPL;
|
||||
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLStorage_GetTypeInfo(IHTMLStorage *iface, UINT iTInfo,
|
||||
|
|
Loading…
Reference in New Issue