mscoree: Implement corruntimehost_Start.

Vincent Povirk madewokherd at gmail.com
Wed Aug 13 14:12:29 CDT 2014


For bug 36849.
-------------- next part --------------
From deb1c1a641223d540a384df6c3e37a349a484455 Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Wed, 13 Aug 2014 14:09:43 -0500
Subject: [PATCH] mscoree: Implement corruntimehost_Start.

---
 dlls/mscoree/corruntimehost.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c
index b0a8b9d..5b7e833 100644
--- a/dlls/mscoree/corruntimehost.c
+++ b/dlls/mscoree/corruntimehost.c
@@ -378,8 +378,12 @@ static HRESULT WINAPI corruntimehost_GetConfiguration(
 static HRESULT WINAPI corruntimehost_Start(
     ICorRuntimeHost* iface)
 {
-    FIXME("stub %p\n", iface);
-    return S_OK;
+    RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
+    MonoDomain *dummy;
+
+    TRACE("%p\n", This);
+
+    return RuntimeHost_GetDefaultDomain(This, &dummy);
 }
 
 static HRESULT WINAPI corruntimehost_Stop(
-- 
1.8.3.2



More information about the wine-patches mailing list