mshtml: Implement IHTMLStorage GetTypeInfoCount

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Mon Aug 19 05:27:08 CDT 2013


Hi,


Changelog:
     mshtml: Implement IHTMLStorage GetTypeInfoCount


Best Regards
  Alistair Leslie-Hughes
-------------- next part --------------
>From b975fe7317680bcda35d9ddb5f1af11a5c1804fd Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date: Mon, 19 Aug 2013 09:18:14 +1000
Subject: [PATCH] Implement IHTMLStorage GetTypeInfoCount
To: wine-patches <wine-patches at winehq.org>

---
 dlls/mshtml/htmlstorage.c | 3 +--
 1 file changed, 1 insertion(+), 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,
-- 
1.8.1.2



More information about the wine-patches mailing list