mscoree: Return S_OK from CanLaunchOrAttach.

This commit is contained in:
Alistair Leslie-Hughes 2011-10-18 10:39:47 +11:00 committed by Alexandre Julliard
parent 8c5a440144
commit 5dcd363f5a
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ static HRESULT WINAPI CorDebug_CanLaunchOrAttach(ICorDebug *iface, DWORD dwProce
{
CorDebug *This = impl_from_ICorDebug( iface );
FIXME("stub %p %d %d\n", This, dwProcessId, win32DebuggingEnabled);
return E_NOTIMPL;
return S_OK;
}
static const struct ICorDebugVtbl cordebug_vtbl =