From 79e0f3e91fcd681debfa95e9a15489007f6c2b0d Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 19 May 2011 13:10:36 -0500 Subject: [PATCH 2/3] mscoree: Return success from ICorRuntimeHost_Start stub. --- dlls/mscoree/corruntimehost.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c index bcdd485..231295d 100644 --- a/dlls/mscoree/corruntimehost.c +++ b/dlls/mscoree/corruntimehost.c @@ -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( -- 1.7.1