mscoree: Return S_OK from ICorDebug Initialize.

This commit is contained in:
Alistair Leslie-Hughes 2011-09-29 14:13:16 +10:00 committed by Alexandre Julliard
parent 14d5268e5e
commit c2ac2a0573
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static HRESULT WINAPI CorDebug_Initialize(ICorDebug *iface)
{ {
RuntimeHost *This = impl_from_ICorDebug( iface ); RuntimeHost *This = impl_from_ICorDebug( iface );
FIXME("stub %p\n", This); FIXME("stub %p\n", This);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI CorDebug_Terminate(ICorDebug *iface) static HRESULT WINAPI CorDebug_Terminate(ICorDebug *iface)