ieframe: Recognize the CGID_ShellDocView command group.

oldstable
Dmitry Timoshkov 2012-09-28 20:51:24 +09:00 committed by Alexandre Julliard
parent 2763a983fe
commit 3dc0d93f4d
1 changed files with 8 additions and 0 deletions

View File

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