Commit fb2f1f2b authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

mscoree: Implement corruntimehost_Start.

parent 6f426807
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment