This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,25 @@
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
}
}