26 lines
1.0 KiB
C#
26 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.LIBFLAGS" /> instead.</summary>
|
|
// Token: 0x0200032D RID: 813
|
|
[Obsolete]
|
|
[Flags]
|
|
[Serializable]
|
|
public enum LIBFLAGS
|
|
{
|
|
/// <summary>The type library is restricted, and should not be displayed to users.</summary>
|
|
// Token: 0x04000D64 RID: 3428
|
|
LIBFLAG_FRESTRICTED = 1,
|
|
/// <summary>The type library describes controls, and should not be displayed in type browsers intended for nonvisual objects.</summary>
|
|
// Token: 0x04000D65 RID: 3429
|
|
LIBFLAG_FCONTROL = 2,
|
|
/// <summary>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.</summary>
|
|
// Token: 0x04000D66 RID: 3430
|
|
LIBFLAG_FHIDDEN = 4,
|
|
/// <summary>The type library exists in a persisted form on disk.</summary>
|
|
// Token: 0x04000D67 RID: 3431
|
|
LIBFLAG_FHASDISKIMAGE = 8
|
|
}
|
|
}
|