Méthode IDebugHostType ::GetFunctionCallingConvention (dbgmodel.h)
La méthode GetFunctionCallingConvention retourne la convention d’appel de la fonction. Ce type est retourné en tant que membre de l’énumération CallingConventionKind.
Syntaxe
HRESULT GetFunctionCallingConvention(
CallingConventionKind *conventionKind
);
Paramètres
conventionKind
La convention d’appel de la fonction est retournée ici en tant que membre de l’énumération CallingConventionKind.
Valeur retournée
Cette méthode retourne HRESULT qui indique la réussite ou l’échec.
Remarques
Exemple de Code
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...)
}
Configuration requise
Condition requise | Valeur |
---|---|
En-tête | dbgmodel.h |