ieframe: Recognize the CGID_ShellDocView command group.

Dmitry Timoshkov dmitry at baikal.ru
Fri Sep 28 06:51:24 CDT 2012


---
 dlls/ieframe/dochost.c | 8 ++++++++
 1 file changed, 8 insertions(+)

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;
 }
-- 
1.7.12.1




More information about the wine-patches mailing list