Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeFlags.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeFlags.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeFlags.cs b/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeFlags.cs
deleted file mode 100755
index adf5297698a..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeFlags.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// System.Runtime.InteropServices.TypeLibTypeFlags.cs
-//
-// Name: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-namespace System.Runtime.InteropServices {
- [Flags] [Serializable]
- public enum TypeLibTypeFlags {
- FAppObject = 1,
- FCanCreate = 2,
- FLicensed = 4,
- FPreDeclId = 8,
- FHidden= 16,
- FControl = 32,
- FDual = 64,
- FNonExtensible = 128,
- FOleAutomation = 256,
- FRestricted = 512,
- FAggregatable = 1024,
- FReplaceable = 2048,
- FDispatchable = 4096,
- FReverseBind = 8192,
- }
-}