mscoree: Implement corruntimehost_Start.
This commit is contained in:
parent
6f426807d3
commit
fb2f1f2b64
|
@ -378,8 +378,12 @@ static HRESULT WINAPI corruntimehost_GetConfiguration(
|
||||||
static HRESULT WINAPI corruntimehost_Start(
|
static HRESULT WINAPI corruntimehost_Start(
|
||||||
ICorRuntimeHost* iface)
|
ICorRuntimeHost* iface)
|
||||||
{
|
{
|
||||||
FIXME("stub %p\n", iface);
|
RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
|
||||||
return S_OK;
|
MonoDomain *dummy;
|
||||||
|
|
||||||
|
TRACE("%p\n", This);
|
||||||
|
|
||||||
|
return RuntimeHost_GetDefaultDomain(This, &dummy);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI corruntimehost_Stop(
|
static HRESULT WINAPI corruntimehost_Stop(
|
||||||
|
|
Loading…
Reference in New Issue