Module: wine Branch: master Commit: 5dcd363f5a2c50dca412b50500affdda346482af URL: http://source.winehq.org/git/wine.git/?a=commit;h=5dcd363f5a2c50dca412b50500...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Tue Oct 18 10:39:47 2011 +1100
mscoree: Return S_OK from CanLaunchOrAttach.
---
dlls/mscoree/cordebug.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mscoree/cordebug.c b/dlls/mscoree/cordebug.c index 04c6e58..8fe7501 100644 --- a/dlls/mscoree/cordebug.c +++ b/dlls/mscoree/cordebug.c @@ -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 =