IDebugHostBaseClass2::GetOffset 方法 (dbgmodel.h)
GetOffset 方法从派生类的基址返回基类的偏移量。 此类偏移量可以是零,也可能是正无符号 64 位值。
语法
HRESULT GetOffset(
ULONG64 *offset
);
参数
offset
此处返回派生类基址中基类的偏移量。
返回值
此方法返回指示成功或失败的 HRESULT。
言论
代码示例
ComPtr<IDebugHostBaseClass2> spBaseClass; /* get a base class symbol (see
EnumerateChildren) */
ULONG64 offset;
if (SUCCEEDED(spBaseClass->GetOffset(&offset)))
{
// offset indicates the position of the base class relative to the
// start of its parent class.
}
要求
要求 | 价值 |
---|---|
标头 | dbgmodel.h |