diff options
author | Cagri (Charlie) Aslan <caslan@microsoft.com> | 2018-03-27 19:39:16 -0700 |
---|---|---|
committer | Andrew Au <cshung@gmail.com> | 2018-11-06 18:34:47 -0800 |
commit | 16d68bbd1fabde0af03e5086f50d2b5330afcb96 (patch) | |
tree | e8457ed3e36f4ea95a83aede8de2fa2bd0dd69e7 /src/inc | |
parent | e965b1e9a6f23eafd11742cd4344eb8c1f1228cb (diff) | |
download | coreclr-16d68bbd1fabde0af03e5086f50d2b5330afcb96.tar.gz coreclr-16d68bbd1fabde0af03e5086f50d2b5330afcb96.tar.bz2 coreclr-16d68bbd1fabde0af03e5086f50d2b5330afcb96.zip |
Initial data breakpoint changes
temporary changes towards multiple data breakpoints
add multiple hardware bp support
Remove Complus.log
revert log.cpp changes
Diffstat (limited to 'src/inc')
-rw-r--r-- | src/inc/xcordebug.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/inc/xcordebug.idl b/src/inc/xcordebug.idl index 646c2069ea..5a1a48a4b7 100644 --- a/src/inc/xcordebug.idl +++ b/src/inc/xcordebug.idl @@ -55,6 +55,17 @@ interface ICorDebugProcess4 : IUnknown }; +[ + object, + local, + uuid(CB54E392-C6DD-47BE-9C60-A99F3ECE3A98), + pointer_default(unique) +] +interface ICorDebugProcess9 : IUnknown +{ + HRESULT CreateBreakpoint([in] CORDB_ADDRESS address, [out] ICorDebugValueBreakpoint **ppBreakpoint); +} + #ifdef FEATURE_LEGACYNETCF_DBG_HOST_CONTROL /* A private API for use on Windows phone to invoke CLR hosting |