summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2018-11-08 10:55:00 -0800
committerAndrew Au <cshung@gmail.com>2018-11-08 18:51:34 -0800
commit9dd2a3688320fa197a3a2a412523416f10e7fa3b (patch)
tree546e0476b313bd2877cc3f50f40766398c26664b /src/inc
parent78570a239101f69200cfceab5e7527ca8cc312b8 (diff)
downloadcoreclr-9dd2a3688320fa197a3a2a412523416f10e7fa3b.tar.gz
coreclr-9dd2a3688320fa197a3a2a412523416f10e7fa3b.tar.bz2
coreclr-9dd2a3688320fa197a3a2a412523416f10e7fa3b.zip
Passing the CONTEXT in ICorDebugManagedCallback4::DataBreakpoint
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/cordebug.idl8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/inc/cordebug.idl b/src/inc/cordebug.idl
index 254a7dbc33..ce1bf4a49e 100644
--- a/src/inc/cordebug.idl
+++ b/src/inc/cordebug.idl
@@ -1385,13 +1385,15 @@ interface ICorDebugManagedCallback4 : IUnknown
// Callback indicating a data breakpoint is hit
//
// Parameters
- // pProcess - the process that hits the data breakpoint
- // pThread - the thread that hits the data breakpoint
+ // pProcess - the process that hits the data breakpoint
+ // pThread - the thread that hits the data breakpoint
+ // pContext - a pointer to the CONTEXT structure
+ // contextSize - the size of the CONTEXT structure
//
// Returns
// S_OK - on success
//
- HRESULT DataBreakpoint([in] ICorDebugProcess* pProcess, [in] ICorDebugThread* pThread);
+ HRESULT DataBreakpoint([in] ICorDebugProcess* pProcess, [in] ICorDebugThread* pThread, [in] BYTE* pContext, [in] ULONG32 contextSize);
}
#pragma warning(disable:28718) /* disable warning 28718 for interface ICorDebugManagedCallback2 */