Merge pull request #920
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / TypeLibExporterFlags.cs
old mode 100755 (executable)
new mode 100644 (file)
index 07edd12..957e689
@@ -1,11 +1,11 @@
-//\r
-// System.Runtime.InteropServices.TypeLibExporterFlags.cs\r
-//\r
-// Author:\r
-//   Kevin Winchester (kwin@ns.sympatico.ca)\r
-//\r
-// (C) 2002 Kevin Winchester\r
-//\r
+//
+// System.Runtime.InteropServices.TypeLibExporterFlags.cs
+//
+// Author:
+//   Kevin Winchester (kwin@ns.sympatico.ca)
+//
+// (C) 2002 Kevin Winchester
+//
 
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-namespace System.Runtime.InteropServices\r
-{\r
-       [Flags] [Serializable]\r
-       public enum TypeLibExporterFlags {\r
-               OnlyReferenceRegistered = 1,\r
-#if NET_2_0\r
-               None = 0,\r
-               CallerResolvedReferences = 2,\r
-               OldNames = 4,\r
-               ExportAs32Bit = 16,\r
-               ExportAs64Bit = 32\r
-#endif\r
-       }\r
-}\r
+
+#if !FULL_AOT_RUNTIME
+namespace System.Runtime.InteropServices
+{
+       [ComVisible(true)]
+       [Flags] [Serializable]
+       public enum TypeLibExporterFlags {
+               OnlyReferenceRegistered = 1,
+               None = 0,
+               CallerResolvedReferences = 2,
+               OldNames = 4,
+               ExportAs32Bit = 16,
+               ExportAs64Bit = 32
+       }
+}
+#endif