callingConventionOption - перечисление
Used to select the default calling convention.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
Public Enumeration callingConventionOption
'Применение
Dim instance As callingConventionOption
public enum callingConventionOption
public enum class callingConventionOption
public enum callingConventionOption
Члены
Имя члена | Описание | |
---|---|---|
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.