Partager via


VCCLCompilerTool.CallingConvention, propriété

Obtient ou définit la convention d'appel par défaut pour votre application. CallingConvention expose les fonctionnalités des options /Gd, /Gr, /Gv, /Gz (Convention d'appel) du compilateur.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property CallingConvention As callingConventionOption
callingConventionOption CallingConvention { get; set; }
property callingConventionOption CallingConvention {
    callingConventionOption get ();
    void set (callingConventionOption value);
}
abstract CallingConvention : callingConventionOption with get, set
function get CallingConvention () : callingConventionOption 
function set CallingConvention (value : callingConventionOption)

Valeur de propriété

Type : Microsoft.VisualStudio.VCProjectEngine.callingConventionOption
Énumération callingConventionOption.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur la compilation et l'exécution de cet exemple.

L'exemple suivant modifie la propriété d'CallingConvention dans l'environnement de développement intégré (IDE) :

' add reference to Microsoft.VisualStudio.VCProjectEngine.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.CallingConvention = _
          callingConventionOption.callConventionFastCall
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCCLCompilerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms