mshtml: Add trace to IOleCommandTarget::Exec().

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2020-08-14 15:04:00 +08:00 committed by Alexandre Julliard
parent 561a192317
commit 8975ec118c
1 changed files with 2 additions and 0 deletions

View File

@ -917,6 +917,8 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
{
HTMLDocument *This = impl_from_IOleCommandTarget(iface);
TRACE("(%p)->(%s %d %d %s %p)\n", This, debugstr_guid(pguidCmdGroup), nCmdID, nCmdexecopt, wine_dbgstr_variant(pvaIn), pvaOut);
if(!This->doc_node->browser)
return E_UNEXPECTED;