Module: wine Branch: master Commit: 692a7593cf79626b4467754de1af4c3bf397d859 URL: http://source.winehq.org/git/wine.git/?a=commit;h=692a7593cf79626b4467754de1... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Thu May 19 13:10:36 2011 -0500 mscoree: Return success from ICorRuntimeHost_Start stub. We don't really have the ability to "Start" and "Stop" Mono, though we can create a default domain. --- 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(