Enum CallingConvention
Represents calling convention, a set of rules defining how the function interacts with its caller, as defined by ECMA-335
Namespace: CilTools.BytecodeAnalysis
Assembly: CilTools.BytecodeAnalysis.dll
Syntax
public enum CallingConvention
Fields
Name | Description |
---|---|
CDecl | C language calling convention |
Default | Default managed calling convention (fixed amount of arguments) |
FastCall | Optimized x86 calling convention |
StdCall | Standard x86 calling convention |
ThisCall | Calling convention for C++ class member functions |
Vararg | Managed calling convention with variable amount of arguments |