mscoree: Implement CLRRuntimeHost_Start.
This commit is contained in:
parent
d30dafa14d
commit
934cfb86b5
1 changed files with 6 additions and 2 deletions
|
@ -814,8 +814,12 @@ static ULONG WINAPI CLRRuntimeHost_Release(ICLRRuntimeHost* iface)
|
|||
|
||||
static HRESULT WINAPI CLRRuntimeHost_Start(ICLRRuntimeHost* iface)
|
||||
{
|
||||
FIXME("(%p)\n", iface);
|
||||
return E_NOTIMPL;
|
||||
RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
|
||||
MonoDomain *dummy;
|
||||
|
||||
TRACE("%p\n", This);
|
||||
|
||||
return RuntimeHost_GetDefaultDomain(This, NULL, &dummy);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI CLRRuntimeHost_Stop(ICLRRuntimeHost* iface)
|
||||
|
|
Loading…
Add table
Reference in a new issue