CallingConvention.cs 784 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // CallingConvention.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Fri, 7 Sep 2001 16:33:29 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Runtime.InteropServices {
  12. /// <summary>
  13. /// </summary>
  14. public enum CallingConvention {
  15. /// <summary>
  16. /// </summary>
  17. Winapi = 1,
  18. /// <summary>
  19. /// </summary>
  20. Cdecl = 2,
  21. /// <summary>
  22. /// </summary>
  23. StdCall = 3,
  24. /// <summary>
  25. /// </summary>
  26. ThisCall = 4,
  27. /// <summary>
  28. /// </summary>
  29. FastCall = 5,
  30. } // CallingConvention
  31. } // System.Runtime.InteropServices