http://bugs.winehq.org/show_bug.cgi?id=17922
--- Comment #5 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-03-22 12:57:34 --- (In reply to comment #4)
(In reply to comment #2)
HTMLLocation_get_href implementation is in GIT for some time now (447e5d1fac0e870b188439a588e816d28bec5725)
Still crashing in current git. Probably because of yet another unimplemented function in mshtml
Now crashes because of unimplmented HTMLDocument_execCommand hack below is enough to get the app running
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index 12aa8c0..9d659ed 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -946,7 +946,7 @@ static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument { HTMLDocument *This = HTMLDOC_THIS(iface); FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(cmdID), showUI, pfRet); - return E_NOTIMPL; + return 0;//E_NOTIMPL; }
static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, B (END)