diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c index b0a8b9dd928..5b7e8330457 100644 --- a/dlls/mscoree/corruntimehost.c +++ b/dlls/mscoree/corruntimehost.c @@ -378,8 +378,12 @@ static HRESULT WINAPI corruntimehost_GetConfiguration( static HRESULT WINAPI corruntimehost_Start( ICorRuntimeHost* iface) { - FIXME("stub %p\n", iface); - return S_OK; + RuntimeHost *This = impl_from_ICorRuntimeHost( iface ); + MonoDomain *dummy; + + TRACE("%p\n", This); + + return RuntimeHost_GetDefaultDomain(This, &dummy); } static HRESULT WINAPI corruntimehost_Stop(