Module: wine Branch: master Commit: 934cfb86b5e2b485b4b90e1eeac4021733559591 URL: https://gitlab.winehq.org/wine/wine/-/commit/934cfb86b5e2b485b4b90e1eeac4021...
Author: Esme Povirk esme@codeweavers.com Date: Thu Mar 7 20:18:03 2024 +0000
mscoree: Implement CLRRuntimeHost_Start.
---
dlls/mscoree/corruntimehost.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c index 1a546f343e0..f5a3831c90e 100644 --- a/dlls/mscoree/corruntimehost.c +++ b/dlls/mscoree/corruntimehost.c @@ -814,8 +814,12 @@ static ULONG WINAPI CLRRuntimeHost_Release(ICLRRuntimeHost* iface)
static HRESULT WINAPI CLRRuntimeHost_Start(ICLRRuntimeHost* iface) { - FIXME("(%p)\n", iface); - return E_NOTIMPL; + RuntimeHost *This = impl_from_ICLRRuntimeHost( iface ); + MonoDomain *dummy; + + TRACE("%p\n", This); + + return RuntimeHost_GetDefaultDomain(This, NULL, &dummy); }
static HRESULT WINAPI CLRRuntimeHost_Stop(ICLRRuntimeHost* iface)