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.
This commit is contained in:
Vincent Povirk 2011-05-19 13:10:36 -05:00 committed by Alexandre Julliard
parent d434b33695
commit 692a7593cf
1 changed files with 1 additions and 1 deletions

View File

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