http://bugs.winehq.org/show_bug.cgi?id=29958
Jerome Leclanche adys.wh@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |adys.wh@gmail.com
--- Comment #2 from Jerome Leclanche adys.wh@gmail.com 2013-02-07 07:35:34 CST --- Simple test case, from Zezula's MPQEditor:
static bool IsRibbonSupported() { IUIFramework * pUIFramework = NULL; HRESULT hr; hr = CoCreateInstance(CLSID_UIRibbonFramework, NULL, CLSCTX_INPROC_SERVER,__uuidof(IUIFramework), (PVOID *)&pUIFramework); if(SUCCEEDED(hr)) { pUIFramework->Release(); return true; } return false; }