CallingConventions.cs 635 B

1234567891011121314151617181920
  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. //NOTE: If you change this please update COMMember.cpp. These
  11. // are defined there.
  12. Standard = 0x0001,
  13. VarArgs = 0x0002,
  14. Any = Standard | VarArgs,
  15. HasThis = 0x0020,
  16. ExplicitThis = 0x0040,
  17. }
  18. }