Commit 88dfdded authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

mscoree: Implement corruntimehost_CreateDomainSetup.

parent 7c7a5946
...@@ -463,8 +463,23 @@ static HRESULT WINAPI corruntimehost_CreateDomainSetup( ...@@ -463,8 +463,23 @@ static HRESULT WINAPI corruntimehost_CreateDomainSetup(
ICorRuntimeHost* iface, ICorRuntimeHost* iface,
IUnknown **appDomainSetup) IUnknown **appDomainSetup)
{ {
FIXME("stub %p\n", iface); RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
return E_NOTIMPL; HRESULT hr;
MonoDomain *domain;
MonoObject *obj;
static const WCHAR classnameW[] = {'S','y','s','t','e','m','.','A','p','p','D','o','m','a','i','n','S','e','t','u','p',',','m','s','c','o','r','l','i','b',0};
TRACE("(%p)\n", iface);
hr = RuntimeHost_GetDefaultDomain(This, &domain);
if (SUCCEEDED(hr))
hr = RuntimeHost_CreateManagedInstance(This, classnameW, domain, &obj);
if (SUCCEEDED(hr))
hr = RuntimeHost_GetIUnknownForObject(This, obj, appDomainSetup);
return hr;
} }
static HRESULT WINAPI corruntimehost_CreateEvidence( static HRESULT WINAPI corruntimehost_CreateEvidence(
......
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