using System; namespace System.Runtime.InteropServices { /// Use instead. // Token: 0x0200032D RID: 813 [Obsolete] [Flags] [Serializable] public enum LIBFLAGS { /// The type library is restricted, and should not be displayed to users. // Token: 0x04000D64 RID: 3428 LIBFLAG_FRESTRICTED = 1, /// The type library describes controls, and should not be displayed in type browsers intended for nonvisual objects. // Token: 0x04000D65 RID: 3429 LIBFLAG_FCONTROL = 2, /// The type library should not be displayed to users, although its use is not restricted. Should be used by controls. Hosts should create a new type library that wraps the control with extended properties. // Token: 0x04000D66 RID: 3430 LIBFLAG_FHIDDEN = 4, /// The type library exists in a persisted form on disk. // Token: 0x04000D67 RID: 3431 LIBFLAG_FHASDISKIMAGE = 8 } }