Module: wine Branch: master Commit: fb2f1f2b64ae3b975e973b6e161c6acbc64eb144 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fb2f1f2b64ae3b975e973b6e16...
Author: Vincent Povirk vincent@codeweavers.com Date: Wed Aug 13 14:09:43 2014 -0500
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(