svn path=/branches/mono-1-1-9/mcs/; revision=51206
[mono.git] / mcs / class / corlib / System.Security.Permissions / RegistryPermissionAccess.cs
old mode 100755 (executable)
new mode 100644 (file)
index c2950ec..3dd0615
@@ -8,9 +8,7 @@
 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-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
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
 
 namespace System.Security.Permissions {
 
-
-       /// <summary>
-       /// </summary>
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        [Flags]
        public enum RegistryPermissionAccess {
 
-               /// <summary>
-               /// </summary>
                NoAccess = 0,
-
-               /// <summary>
-               /// </summary>
                Read = 1,
-
-               /// <summary>
-               /// </summary>
                Write = 2,
-
-               /// <summary>
-               /// </summary>
                Create = 4,
-
-               /// <summary>
-               /// </summary>
                AllAccess = 7,
-       } // RegistryPermissionAccess
-
-} // System.Security.Permissions
+       }
+}