IDebugHostField::GetLocation 方法 (dbgmodel.h)

对于具有地址的字段,而不考虑特定类型实例 (例如位置类型指示 LocationStatic) 的字段,GetLocation 方法将返回该字段的抽象位置 (地址) 。

如果给定字段没有静态位置,则 GetLocation 方法将失败。

语法

HRESULT GetLocation(
  Location *location
);

参数

location

此处将返回字段的抽象位置 (,例如:地址) 。

返回值

此方法返回指示成功或失败的 HRESULT。

注解

示例代码*

ComPtr<IDebugHostField> spField; /* get a field symbol (see EnumerateChildren) */

Location fieldLocation;
if (SUCCEEDED(spField->GetLocation(&fieldLocation)))
{
    // For fields which have a static location as determined by GetLocationKind, 
    // the location of the field will be in fieldLocation.
}

要求

要求
Header dbgmodel.h

另请参阅

IDebugHostField 接口