mscoree: Add WARN when ICorDebugManagedCallback2 cannot be found.

This commit is contained in:
Alistair Leslie-Hughes 2011-10-12 20:40:00 +11:00 committed by Alexandre Julliard
parent c857bdd09d
commit 44c39a85ae
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}