remove warning
[mono.git] / mcs / class / corlib / System / DomainManagerInitializationFlags.cs
index 5cc217250ce0692a48dd1683eec8653a3d1c6776..118e4a2dc4a8bba7343c86f2eeee984645dd4b46 100644 (file)
@@ -1,10 +1,10 @@
 //
-// System.DomainManagerInitializationFlags enum
+// System.AppDomainManagerInitializationOptions flags
 //
 // Author:
 //     Sebastien Pouliot  <sebastien@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
 
 #if NET_2_0
 
+using System.Runtime.InteropServices;
+
 namespace System {
 
        [Flags]
-       [Serializable]
-       public enum DomainManagerInitializationFlags {
+       [ComVisible (true)]
+       public enum AppDomainManagerInitializationOptions {
                None = 0,
                RegisterWithHost = 1,
-               Activate = 2
        }
 }