Método IDebugHostType::GetFunctionCallingConvention (dbgmodel.h)
El método GetFunctionCallingConvention devuelve la convención de llamada de la función. Se devuelve como miembro de la enumeración CallingConventionKind.
Sintaxis
HRESULT GetFunctionCallingConvention(
CallingConventionKind *conventionKind
);
Parámetros
conventionKind
La convención de llamada de la función se devuelve aquí como miembro de la enumeración CallingConventionKind.
Valor devuelto
Este método devuelve HRESULT que indica éxito o error.
Comentarios
Código de ejemplo
ComPtr<IDebugHostModule> spType; /* get a type for some function type (see FindTypeByName) */
CallingConventionKind conv;
if (SUCCEEDED(spType->GetCallingConvention(&conv)))
{
// conv indicates the calling convention (e.g.: cdecl, thiscall, etc...)
}
Requisitos
Requisito | Valor |
---|---|
Header | dbgmodel.h |