Author: zoltan
Date: 2005-06-06 14:42:34 -0400 (Mon, 06 Jun 2005)
New Revision: 45521

Added:
   trunk/mcs/class/corlib/System.Reflection/ProcessorArchitecture.cs
Modified:
   trunk/mcs/class/corlib/System.Reflection/ChangeLog
Log:
2005-06-06  Zoltan Varga  <[EMAIL PROTECTED]>

        * ProcessorArchitecture.cs: New file.


Modified: trunk/mcs/class/corlib/System.Reflection/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/ChangeLog  2005-06-06 18:33:17 UTC 
(rev 45520)
+++ trunk/mcs/class/corlib/System.Reflection/ChangeLog  2005-06-06 18:42:34 UTC 
(rev 45521)
@@ -1,5 +1,7 @@
 2005-06-06  Zoltan Varga  <[EMAIL PROTECTED]>
 
+       * ProcessorArchitecture.cs: New file.
+
        * ExceptionHandlingClause.cs: Update after ExceptionHandlingClauseFlags 
name change.
 
        * *.cs: Updates for net 2.0 beta 2.

Added: trunk/mcs/class/corlib/System.Reflection/ProcessorArchitecture.cs
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/ProcessorArchitecture.cs   
2005-06-06 18:33:17 UTC (rev 45520)
+++ trunk/mcs/class/corlib/System.Reflection/ProcessorArchitecture.cs   
2005-06-06 18:42:34 UTC (rev 45521)
@@ -0,0 +1,44 @@
+//
+// System.Reflection.ProcessorArchitecture flag
+//
+// Author:
+//   Zoltan Varga ([EMAIL PROTECTED])
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+namespace System.Reflection {
+
+       [Flags]
+       [Serializable]
+       public enum ProcessorArchitecture {
+               None = 0,
+               MSIL = 1,
+               X86 = 2,
+               IA64 = 3,
+               Amd64 = 4
+       }
+}
+
+#endif

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to