From 44c39a85ae3d277030e645427894c7282b510fc4 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Wed, 12 Oct 2011 20:40:00 +1100 Subject: [PATCH] mscoree: Add WARN when ICorDebugManagedCallback2 cannot be found. --- dlls/mscoree/cordebug.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/mscoree/cordebug.c b/dlls/mscoree/cordebug.c index 62ded24a81c..c5342bce814 100644 --- a/dlls/mscoree/cordebug.c +++ b/dlls/mscoree/cordebug.c @@ -142,6 +142,10 @@ static HRESULT WINAPI CorDebug_SetManagedHandler(ICorDebug *iface, ICorDebugMana ICorDebugManagedCallback_AddRef(This->pCallback); } + else + { + WARN("Debugging without interface ICorDebugManagedCallback2 is currently not supported.\n"); + } return hr; }