diff options
author | Andrew Au <andrewau@microsoft.com> | 2018-05-17 15:20:15 -0700 |
---|---|---|
committer | Andrew Au <cshung@gmail.com> | 2018-11-06 18:34:47 -0800 |
commit | 5fd5ef364611d5b608913d26f6ea003a59239594 (patch) | |
tree | 6816539e23eb7fa389c63bba5e05c30a889c0218 /src/pal | |
parent | 4e9171f9c0f718464e3a62614377100f3abae1c8 (diff) | |
download | coreclr-5fd5ef364611d5b608913d26f6ea003a59239594.tar.gz coreclr-5fd5ef364611d5b608913d26f6ea003a59239594.tar.bz2 coreclr-5fd5ef364611d5b608913d26f6ea003a59239594.zip |
ContainerObject -> ContainingObject
Diffstat (limited to 'src/pal')
-rw-r--r-- | src/pal/prebuilt/inc/cordebug.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pal/prebuilt/inc/cordebug.h b/src/pal/prebuilt/inc/cordebug.h index 1b9fd21063..b3d1612bf8 100644 --- a/src/pal/prebuilt/inc/cordebug.h +++ b/src/pal/prebuilt/inc/cordebug.h @@ -7840,9 +7840,9 @@ EXTERN_C const IID IID_ICorDebugProcess9; ICorDebugProcess9 : public IUnknown { public: - virtual HRESULT STDMETHODCALLTYPE GetContainerObject( + virtual HRESULT STDMETHODCALLTYPE GetContainingObject( /* [in] */ CORDB_ADDRESS interiorPointer, - /* [out] */ ICorDebugObjectValue **ppContainerObject) = 0; + /* [out] */ ICorDebugObjectValue **ppContainingObject) = 0; }; @@ -7865,10 +7865,10 @@ EXTERN_C const IID IID_ICorDebugProcess9; ULONG ( STDMETHODCALLTYPE *Release )( ICorDebugProcess9 * This); - HRESULT ( STDMETHODCALLTYPE *GetContainerObject )( + HRESULT ( STDMETHODCALLTYPE *GetContainingObject )( ICorDebugProcess9 * This, /* [in] */ CORDB_ADDRESS interiorPointer, - /* [out] */ ICorDebugObjectValue **ppContainerObject); + /* [out] */ ICorDebugObjectValue **ppContainingObject); END_INTERFACE } ICorDebugProcess9Vtbl; @@ -7893,8 +7893,8 @@ EXTERN_C const IID IID_ICorDebugProcess9; ( (This)->lpVtbl -> Release(This) ) -#define ICorDebugProcess9_GetContainerObject(This,interiorPointer,ppContainerObject) \ - ( (This)->lpVtbl -> GetContainerObject(This,interiorPointer,ppContainerObject) ) +#define ICorDebugProcess9_GetContainingObject(This,interiorPointer,ppContainingObject) \ + ( (This)->lpVtbl -> GetContainingObject(This,interiorPointer,ppContainingObject) ) #endif /* COBJMACROS */ |