mscoree: Implement corruntimehost_Start.

This commit is contained in:
Vincent Povirk 2014-08-13 14:09:43 -05:00 committed by Alexandre Julliard
parent 6f426807d3
commit fb2f1f2b64

View file

@ -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(