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