Commit c2ac2a05 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

mscoree: Return S_OK from ICorDebug Initialize.

parent 14d5268e
...@@ -86,7 +86,7 @@ static HRESULT WINAPI CorDebug_Initialize(ICorDebug *iface) ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment