Condividi tramite


Metodo IDebugHostType2::GetFunctionCallingConvention (dbgmodel.h)

Il metodo GetFunctionCallingConvention restituisce la convenzione di chiamata della funzione. Tale valore viene restituito come membro dell'enumerazione CallingConventionKind.

Sintassi

HRESULT GetFunctionCallingConvention(
  CallingConventionKind *conventionKind
);

Parametri

conventionKind

La convenzione di chiamata della funzione viene restituita qui come membro dell'enumerazione CallingConventionKind.

Valore restituito

Questo metodo restituisce HRESULT che indica l'esito positivo o negativo.

Commenti

Codice di esempio

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...)
}

Requisiti

Requisito Valore
Intestazione dbgmodel.h

Vedi anche

Interfaccia IDebugHostType2