summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2018-10-24 19:22:44 -0700
committerAndrew Au <cshung@gmail.com>2018-11-06 18:34:47 -0800
commit7cf7f086e17b7052eb1c34ce3b0000f900ac2ff0 (patch)
tree9a81f11b03cb6ba99a544cf772f4942ba571188b /src/inc
parentd742a2f03ab849a2d6a101320d3f1107a8f82c13 (diff)
downloadcoreclr-7cf7f086e17b7052eb1c34ce3b0000f900ac2ff0.tar.gz
coreclr-7cf7f086e17b7052eb1c34ce3b0000f900ac2ff0.tar.bz2
coreclr-7cf7f086e17b7052eb1c34ce3b0000f900ac2ff0.zip
Change GetContainingObject API
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/cordebug.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inc/cordebug.idl b/src/inc/cordebug.idl
index c23f305b5a..a9157d09ec 100644
--- a/src/inc/cordebug.idl
+++ b/src/inc/cordebug.idl
@@ -3298,19 +3298,19 @@ interface ICorDebugProcess8 : IUnknown
interface ICorDebugProcess10 : IUnknown
{
//
- // Given a pointer that is pointing to the interior of an object (for example, a field on an object),
+ // Given a value inside an object (for example, a field on an object),
// returns the containing object.
//
// Parameters
- // interiorPointer - the pointer pointing to the interior of an object.
+ // pValue - the value in the interior of an object.
// ppContainingObject - [out] An ICorDebugObjectValue that represents the containing object.
//
// Returns
// S_OK - on success
- // S_FALSE - if the given interior pointer is not inside an object
+ // S_FALSE - if the given value is not inside an object
// E_POINTER - ppContainingObject is NULL
//
- HRESULT GetContainingObject([in] CORDB_ADDRESS interiorPointer, [out] ICorDebugObjectValue** ppContainingObject);
+ HRESULT GetContainingObject([in] ICorDebugValue* pValue, [out] ICorDebugObjectValue** ppContainingObject);
//
// Enable or disable the GC notification events. The GC notification events are turned off by default