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...
}
規格需求
需求 | 值 |
---|---|
標頭 | dbgmodel.h |