IDebugHostPublic::GetLocationKind メソッド (dbgmodel.h)
GetLocationKind メソッドは、LocationKind 列挙に従ってシンボルの位置の種類を返します。 この列挙体の説明については、 IDebugHostField のドキュメントを参照してください。
構文
HRESULT GetLocationKind(
LocationKind *locationKind
);
パラメーター
locationKind
このフィールドの場所の種類は、LocationKind 列挙の値としてここで返されます。
戻り値
このメソッドは、成功または失敗を示す HRESULT を返します。
注釈
サンプル コード
ComPtr<IDebugHostPublic> spPublic; /* get a public symbol (see EnumerateChildren) */
LocationKind kind;
if (SUCCEEDED(spPublic->GetLocationKind(&kind)))
{
// kind indicates the kind of location (static, none).
}
要件
要件 | 値 |
---|---|
Header | dbgmodel.h |