This topic has not yet been rated - Rate this topic

callingConventionOption Enumeration

Used to select the default calling convention.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
public enum callingConventionOption
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

See /Gd, /Gr, /Gz (Calling Convention) for more information. Used by the CallingConvention property.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Advertisement