[PATCH 0/1] MR9473: mscoree: Return S_OK from ICLRRuntimeHost_SetHostControl.
Used by https://github.com/ValveSoftware/Proton/issues/9183 I suspect it'll need us to actually do something with its IHostControl interface, but this inches it forward for now. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9473
From: Esme Povirk <esme(a)codeweavers.com> --- dlls/mscoree/corruntimehost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c index 3166c98624d..76adef38044 100644 --- a/dlls/mscoree/corruntimehost.c +++ b/dlls/mscoree/corruntimehost.c @@ -832,7 +832,7 @@ static HRESULT WINAPI CLRRuntimeHost_SetHostControl(ICLRRuntimeHost* iface, IHostControl *pHostControl) { FIXME("(%p,%p)\n", iface, pHostControl); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI CLRRuntimeHost_GetCLRControl(ICLRRuntimeHost* iface, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9473
participants (2)
-
Esme Povirk -
Esme Povirk (@madewokherd)