ieframe: Recognize the CGID_ShellDocView command group.
This commit is contained in:
parent
2763a983fe
commit
3dc0d93f4d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue