/Mono.Cecil/MethodCallingConvention.cs

http://github.com/jbevain/cecil · C# · 22 lines · 11 code · 2 blank · 9 comment · 0 complexity · 6c5546fb6258f84c0b6c45224e998f9f MD5 · raw file

  1. //
  2. // Author:
  3. // Jb Evain (jbevain@gmail.com)
  4. //
  5. // Copyright (c) 2008 - 2015 Jb Evain
  6. // Copyright (c) 2008 - 2011 Novell, Inc.
  7. //
  8. // Licensed under the MIT/X11 license.
  9. //
  10. namespace Mono.Cecil {
  11. public enum MethodCallingConvention : byte {
  12. Default = 0x0,
  13. C = 0x1,
  14. StdCall = 0x2,
  15. ThisCall = 0x3,
  16. FastCall = 0x4,
  17. VarArg = 0x5,
  18. Generic = 0x10,
  19. }
  20. }