2004-01-30 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / CallingConvention.cs
index 95aa47975bc7bc6848ea0888e42ce145d27dda15..7f2c24d2b0ce8705e513c94496d24feefaf529ef 100644 (file)
@@ -1,24 +1,41 @@
-//------------------------------------------------------------------------------\r
-// \r
-// System.Runtime.InteropServices.CallingConvention.cs\r
-//\r
-// Copyright (C) 2001 Michael Lambert, All Rights Reserved\r
-// \r
-// Author:         Michael Lambert, michaellambert@email.com\r
-// Created:        Thu 07/18/2001 \r
-//\r
-//------------------------------------------------------------------------------\r
-\r
-namespace System.Runtime.InteropServices\r
-{\r
-\r
-public enum CallingConvention\r
-{\r
-    Cdecl,\r
-    FastCall,\r
-    StdCall,\r
-    ThisCall,\r
-    Winapi,\r
-}\r
-\r
-} // Namespace\r
+// CallingConvention.cs
+//
+// This code was automatically generated from
+// ECMA CLI XML Library Specification.
+// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
+// Created: Fri, 7 Sep 2001 16:33:29 UTC
+// Source file: AllTypes.xml
+// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
+//
+// (C) 2001 Ximian, Inc.  http://www.ximian.com
+
+
+namespace System.Runtime.InteropServices {
+
+
+       /// <summary>
+       /// </summary>
+       public enum CallingConvention {
+
+               /// <summary>
+               /// </summary>
+               Winapi = 1,
+
+               /// <summary>
+               /// </summary>
+               Cdecl = 2,
+
+               /// <summary>
+               /// </summary>
+               StdCall = 3,
+
+               /// <summary>
+               /// </summary>
+               ThisCall = 4,
+
+               /// <summary>
+               /// </summary>
+               FastCall = 5,
+       } // CallingConvention
+
+} // System.Runtime.InteropServices