return hr;
}
-COM_METHOD CordbProcess::GetContainerObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainerObject)
+COM_METHOD CordbProcess::GetContainingObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainingObject)
{
HRESULT hr = S_OK;
// TODO, databp, I don't know what I am doing, NO_LOCK doesn't sound right
{
_ASSERTE(event.type == DB_IPCE_GET_CONTAINER_RESULT);
CORDB_ADDRESS containerAddress = PTR_TO_CORDB_ADDRESS(event.GetContainerResult.answer);
- hr = this->GetObject(containerAddress, ppContainerObject);
+ hr = this->GetObject(containerAddress, ppContainingObject);
}
PUBLIC_API_END(hr);
//-----------------------------------------------------------
// ICorDebugProcess9
//-----------------------------------------------------------
- COM_METHOD GetContainerObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainerObject);
+ COM_METHOD GetContainingObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainingObject);
#ifdef FEATURE_LEGACYNETCF_DBG_HOST_CONTROL
// ---------------------------------------------------------------
]
interface ICorDebugProcess9 : IUnknown
{
- HRESULT GetContainerObject([in] CORDB_ADDRESS interiorPointer, [out] ICorDebugObjectValue** ppContainerObject);
+ HRESULT GetContainingObject([in] CORDB_ADDRESS interiorPointer, [out] ICorDebugObjectValue** ppContainingObject);
}
// Event types MODULE_LOADED and MODULE_UNLOADED implement this interface
ICorDebugProcess9 : public IUnknown
{
public:
- virtual HRESULT STDMETHODCALLTYPE GetContainerObject(
+ virtual HRESULT STDMETHODCALLTYPE GetContainingObject(
/* [in] */ CORDB_ADDRESS interiorPointer,
- /* [out] */ ICorDebugObjectValue **ppContainerObject) = 0;
+ /* [out] */ ICorDebugObjectValue **ppContainingObject) = 0;
};
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;
( (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 */