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,30 @@
using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.DESCKIND" /> instead.</summary>
// Token: 0x02000307 RID: 775
[Obsolete]
[Serializable]
public enum DESCKIND
{
/// <summary>Indicates that no match was found.</summary>
// Token: 0x04000CFB RID: 3323
DESCKIND_NONE,
/// <summary>Indicates that a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> was returned.</summary>
// Token: 0x04000CFC RID: 3324
DESCKIND_FUNCDESC,
/// <summary>Indicates that a VARDESC was returned.</summary>
// Token: 0x04000CFD RID: 3325
DESCKIND_VARDESC,
/// <summary>Indicates that a TYPECOMP was returned.</summary>
// Token: 0x04000CFE RID: 3326
DESCKIND_TYPECOMP,
/// <summary>Indicates that an IMPLICITAPPOBJ was returned.</summary>
// Token: 0x04000CFF RID: 3327
DESCKIND_IMPLICITAPPOBJ,
/// <summary>Indicates an end of enumeration marker.</summary>
// Token: 0x04000D00 RID: 3328
DESCKIND_MAX
}
}