Commit 692a7593 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

mscoree: Return success from ICorRuntimeHost_Start stub.

We don't really have the ability to "Start" and "Stop" Mono, though we can create a default domain.
parent d434b336
......@@ -253,7 +253,7 @@ static HRESULT WINAPI corruntimehost_Start(
ICorRuntimeHost* iface)
{
FIXME("stub %p\n", iface);
return E_NOTIMPL;
return S_OK;
}
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