System.Runtime.InteropServices.CallingConvention
namespace System.Runtime.InteropServices
{
public enum CallingConvention
{
Cdecl = 2,
FastCall = 5,
StdCall = 3,
ThisCall = 4,
Winapi = 1
}
}