Compartir a través de


Método IDebugHostType::GetTypeKind (dbgmodel.h)

El método GetTypeKind devuelve a qué tipo de tipo (puntero, matriz, intrínseco, etc.) se refiere el símbolo. Consulte la enumeración TypeKind para obtener más información.

Sintaxis

HRESULT GetTypeKind(
  TypeKind *kind
);

Parámetros

kind

El tipo de tipo al que hace referencia el símbolo se devolverá aquí (como miembro de la enumeración TypeKind).

Valor devuelto

Este método devuelve HRESULT que indica éxito o error.

Comentarios

Código de ejemplo

ComPtr<IDebugHostType> 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...
}

Requisitos

Requisito Valor
Header dbgmodel.h

Consulte también

Interfaz IDebugHostType