Jacek Caban : ieframe: Return DISP_E_UNKNOWNNAME in IShellUIHelper2:: GetIDsOfNames.

Alexandre Julliard julliard at winehq.org
Fri May 5 15:05:59 CDT 2017


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri May  5 16:57:30 2017 +0200

ieframe: Return DISP_E_UNKNOWNNAME in IShellUIHelper2::GetIDsOfNames.

Also improved debug messages.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ieframe/shelluihelper.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dlls/ieframe/shelluihelper.c b/dlls/ieframe/shelluihelper.c
index 9dca681..cc636f6 100644
--- a/dlls/ieframe/shelluihelper.c
+++ b/dlls/ieframe/shelluihelper.c
@@ -102,9 +102,13 @@ static HRESULT WINAPI ShellUIHelper2_GetIDsOfNames(IShellUIHelper2 *iface, REFII
         LCID lcid, DISPID *rgDispId)
 {
     ShellUIHelper *This = impl_from_IShellUIHelper2(iface);
-    FIXME("(%p)->(%s %p %d %d %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
-          lcid, rgDispId);
-    return E_NOTIMPL;
+    unsigned i;
+
+    FIXME("(%p)->(%s %p %d %d %p)\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
+    for(i = 0; i < cNames; i++)
+        FIXME("%s\n", debugstr_w(rgszNames[i]));
+
+    return DISP_E_UNKNOWNNAME;
 }
 
 static HRESULT WINAPI ShellUIHelper2_Invoke(IShellUIHelper2 *iface, DISPID dispIdMember,




More information about the wine-cvs mailing list