Alistair Leslie-Hughes : mshtml: Implement IHTMLStorage GetTypeInfoCount.

Alexandre Julliard julliard at winehq.org
Mon Aug 19 14:33:00 CDT 2013


Module: wine
Branch: master
Commit: cdcea0e8affa78f1c44bdab55076206324e26b8d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cdcea0e8affa78f1c44bdab55076206324e26b8d

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Mon Aug 19 09:18:14 2013 +1000

mshtml: Implement IHTMLStorage GetTypeInfoCount.

---

 dlls/mshtml/htmlstorage.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/htmlstorage.c b/dlls/mshtml/htmlstorage.c
index e0c4a53..544ab8a 100644
--- a/dlls/mshtml/htmlstorage.c
+++ b/dlls/mshtml/htmlstorage.c
@@ -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,




More information about the wine-cvs mailing list