callingConventionOption-Enumeration
Wird verwendet, um die Standardaufrufkonvention auszuwählen.
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
Member
Membername | Beschreibung | |
---|---|---|
callConventionCDecl | Standardeinstellung.__cdecl (/Gd) gibt die C-Aufrufkonvention für alle Funktionen mit Ausnahme von C++-Memberfunktionen und als __stdcall oder __fastcall an Funktionen | |
callConventionFastCall | __fastcall (/Gr) Gibt die Aufrufkonvention für alle Funktionen mit Ausnahme von Funktionen, die eine variable Anzahl von Argumenten und Funktionen akzeptieren __stdcall oder als __cdecl | |
callConventionStdCall | __stdcall (/Gz) Gibt die Aufrufkonvention für alle Prototyp-C-Funktionen außer Funktionen, die eine variable Anzahl von Argumenten und Funktionen als __cdecl oder __fastcall: |
Hinweise
Weitere Informationen finden Sie unter /Gd, /Gr, /Gz (Aufrufkonvention).Wird von der CallingConvention-Eigenschaft verwendet.