Condividi tramite


Metodo IDebugHostType::GetFunctionCallingConvention (dbgmodel.h)

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

Sintassi

HRESULT GetFunctionCallingConvention(
  CallingConventionKind *conventionKind
);

Parametri

conventionKind

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

Valore restituito

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

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 IDebugHostType