Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Used to select the default calling convention.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
Public Enumeration callingConventionOption
Dim instance As callingConventionOption
public enum callingConventionOption
public enum class callingConventionOption
public enum callingConventionOption
Members
| Member name | Description | |
|---|---|---|
| callConventionCDecl | Default setting. __cdecl(/Gd) specifies the C calling convention for all functions except C++ member functions and functions marked __fastcall or __stdcall | |
| callConventionFastCall | __fastcall(/Gr) specifies the calling convention for all functions except for functions that take a variable number of arguments and functions marked __cdecl or __stdcall | |
| callConventionStdCall | __stdcall(/Gz) specifies the calling convention for all prototyped C functions except for functions that take a variable number of arguments and functions marked __cdecl or __fastcall |
Remarks
See /Gd, /Gr, /Gz (Calling Convention) for more information. Used by the CallingConvention property.