IDebugHostType2::GetFunctionParameterTypeAt 方法 (dbgmodel.h)
GetFunctionParameterTypeAt 方法會將 i 自變數的類型傳回函式。
語法
HRESULT GetFunctionParameterTypeAt(
ULONG64 i,
IDebugHostType **parameterType
);
參數
i
要擷取自變數類型的函式自變數清單中的以零起始的索引。
parameterType
函式的 i 自變數類型將會在這裡傳回。
傳回值
這個方法會傳回 HRESULT,指出成功或失敗。
備註
範例程式碼
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.
}
}
}
規格需求
需求 | 值 |
---|---|
標頭 | dbgmodel.h |