Alistair Leslie-Hughes : mscoree: Return S_OK from CanLaunchOrAttach.

Alexandre Julliard julliard at winehq.org
Wed Nov 2 14:23:36 CDT 2011


Module: wine
Branch: master
Commit: 5dcd363f5a2c50dca412b50500affdda346482af
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5dcd363f5a2c50dca412b50500affdda346482af

Author: Alistair Leslie-Hughes <leslie_alistair at 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 =




More information about the wine-cvs mailing list