CallingConventions.cs 575 B

12345678910111213141516171819
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. // CallingConventions is a set of Bits representing the calling conventions in the system.
  5. namespace System.Reflection
  6. {
  7. [Flags]
  8. public enum CallingConventions
  9. {
  10. // Keep in sync with COMMember.cpp.
  11. Standard = 0x0001,
  12. VarArgs = 0x0002,
  13. Any = Standard | VarArgs,
  14. HasThis = 0x0020,
  15. ExplicitThis = 0x0040,
  16. }
  17. }