http://bugs.winehq.org/show_bug.cgi?id=13969
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-06-17 11:01:36 --- My guess would be the problem is: fixme:shdocvw:WebBrowser_GetIDsOfNames (0x150f08)->({00000000-0000-0000-0000-000000000000} 0x32ee88 1 1033 0x32ee8c)
Could you try what the app does with stupid hack below? It's not a real patch, just to track down of the problem is the missing apo from above
diff --git a/dlls/shdocvw/webbrowser.c b/dlls/shdocvw/webbrowser.c index 50c3b34..cea8446 100644 --- a/dlls/shdocvw/webbrowser.c +++ b/dlls/shdocvw/webbrowser.c @@ -184,7 +184,7 @@ static HRESULT WINAPI WebBrowser_GetIDsOfNames(IWebBrowser2 *iface, REFIID riid, WebBrowser *This = WEBBROWSER_THIS(iface); FIXME("(%p)->(%s %p %d %d %p)\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId); - return E_NOTIMPL; + return 0; }
static HRESULT WINAPI WebBrowser_Invoke(IWebBrowser2 *iface, DISPID dispIdMember,