Método IDebugHostType2::GetFunctionParameterTypeAt (dbgmodel.h)
El método GetFunctionParameterTypeAt devuelve el tipo del argumento i-th a la función .
Sintaxis
HRESULT GetFunctionParameterTypeAt(
ULONG64 i,
IDebugHostType **parameterType
);
Parámetros
i
Índice de base cero en la lista de argumentos de función para el que se va a recuperar el tipo de argumento.
parameterType
El tipo del argumento i-th a la función se devolverá aquí.
Valor devuelto
Este método devuelve HRESULT que indica éxito o error.
Comentarios
Código de ejemplo
ComPtr<IDebugHostType> spType; /* get a type for a function (see FindTypeByName) */
// enumerate (in order) the types of parameters the function takes
ULONG64 count;
if (SUCCEEDED(spType->GetFunctionParameterTypeCount(&count)))
{
for (ULONG64 i = 0; i < count; ++i)
{
ComPtr<IDebugHostType> spParamType;
if (SUCCEEDED(spType->GetFunctionParameterTypeAt(i, &spParamType)))
{
// spParamType is the type symbol for the type of parameter the
// function takes at position i in the argument list.
}
}
}
Requisitos
Requisito | Valor |
---|---|
Header | dbgmodel.h |