Dmitry Timoshkov : ieframe: Recognize the CGID_ShellDocView command group.
Module: wine Branch: master Commit: 3dc0d93f4d9a53dcfbeeb0caa00fad9fda53361d URL: http://source.winehq.org/git/wine.git/?a=commit;h=3dc0d93f4d9a53dcfbeeb0caa0... Author: Dmitry Timoshkov <dmitry(a)baikal.ru> Date: Fri Sep 28 20:51:24 2012 +0900 ieframe: Recognize the CGID_ShellDocView command group. --- dlls/ieframe/dochost.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/dlls/ieframe/dochost.c b/dlls/ieframe/dochost.c index d966ea0..0449f24 100644 --- a/dlls/ieframe/dochost.c +++ b/dlls/ieframe/dochost.c @@ -597,6 +597,14 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, } } + if(IsEqualGUID(pguidCmdGroup, &CGID_ShellDocView)) { + switch(nCmdID) { + default: + FIXME("Unimplemented cmdid %d of CGID_ShellDocView\n", nCmdID); + return E_NOTIMPL; + } + } + FIXME("Unimplemented cmdid %d of group %s\n", nCmdID, debugstr_guid(pguidCmdGroup)); return E_NOTIMPL; }
participants (1)
-
Alexandre Julliard