https://bugs.winehq.org/show_bug.cgi?id=38940
--- Comment #3 from Ken Sharp imwellcushtymelike@gmail.com --- No change in Wine 3.8 except that I have to return /something/ for the compilation to succeed:
diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c index a9e94c5..52e1c1e 100644 --- a/dlls/ole32/compobj.c +++ b/dlls/ole32/compobj.c @@ -4865,7 +4865,7 @@ static HRESULT WINAPI Context_CC_ContextCallback(IContextCallback *iface, PFNCON Context *This = impl_from_IContextCallback(iface);
FIXME("(%p/%p)->(%p, %p, %s, %d, %p)\n", This, iface, pCallback, param, debugstr_guid(riid), method, punk); - return E_NOTIMPL; + return S_OK; }
static const IContextCallbackVtbl Context_Callback_Vtbl =