callingConventionOption Enumeration
Used to select the default calling convention.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Public Enumeration callingConventionOption
public enum callingConventionOption
public enum class callingConventionOption
type 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.