using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x020002F4 RID: 756
[Obsolete]
[Serializable]
public enum CALLCONV
{
/// Indicates that the Cdecl calling convention is used for a method.
// Token: 0x04000CCA RID: 3274
CC_CDECL = 1,
/// Indicates that the Pascal calling convention is used for a method.
// Token: 0x04000CCB RID: 3275
CC_PASCAL,
/// Indicates that the Mscpascal calling convention is used for a method.
// Token: 0x04000CCC RID: 3276
CC_MSCPASCAL = 2,
/// Indicates that the Macpascal calling convention is used for a method.
// Token: 0x04000CCD RID: 3277
CC_MACPASCAL,
/// Indicates that the Stdcall calling convention is used for a method.
// Token: 0x04000CCE RID: 3278
CC_STDCALL,
/// This value is reserved for future use.
// Token: 0x04000CCF RID: 3279
CC_RESERVED,
/// Indicates that the Syscall calling convention is used for a method.
// Token: 0x04000CD0 RID: 3280
CC_SYSCALL,
/// Indicates that the Mpwcdecl calling convention is used for a method.
// Token: 0x04000CD1 RID: 3281
CC_MPWCDECL,
/// Indicates that the Mpwpascal calling convention is used for a method.
// Token: 0x04000CD2 RID: 3282
CC_MPWPASCAL,
/// Indicates the end of the enumeration.
// Token: 0x04000CD3 RID: 3283
CC_MAX
}
}