2007-02-08 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / CallingConvention.cs
index 4284d12e25eb1859b2406130f1a6119361a236c7..6aae6b190065cf138f36669386b6ed61132685c0 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-
+using System;
 
 namespace System.Runtime.InteropServices {
 
-
-       /// <summary>
-       /// </summary>
+#if NET_2_0
+       [Serializable]
+#endif
        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