IDebugHostType2::GetTypeKind メソッド (dbgmodel.h)
GetTypeKind メソッドは、シンボルが参照する型 (ポインター、配列、組み込みなど) の種類を返します。
構文
HRESULT GetTypeKind(
TypeKind *kind
);
パラメーター
kind
シンボルが参照する型の種類は、ここで返されます (TypeKind 列挙体のメンバーとして)。
戻り値
このメソッドは、成功または失敗を示す HRESULT を返します。
注釈
サンプル コード
ComPtr<IDebugHostType2> spType; /* get a type (see FindTypeByName) */
TypeKind tk;
if (SUCCEEDED(spType->GetTypeKind(&tk)))
{
// tk is the kind of type
// TypePointer: it's a pointer
// TypeArray: it's an array
// etc...
}
要件
要件 | 値 |
---|---|
Header | dbgmodel.h |