Files
2026-06-04 11:42:34 +02:00

28 lines
1.1 KiB
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.FUNCKIND" /> instead.</summary>
// Token: 0x02000315 RID: 789
[Obsolete]
[Serializable]
public enum FUNCKIND
{
/// <summary>The function is accessed the same as <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL" />, except the function has an implementation.</summary>
// Token: 0x04000D36 RID: 3382
FUNC_VIRTUAL,
/// <summary>The function is accessed through the virtual function table (VTBL), and takes an implicit this pointer.</summary>
// Token: 0x04000D37 RID: 3383
FUNC_PUREVIRTUAL,
/// <summary>The function is accessed by static address and takes an implicit this pointer.</summary>
// Token: 0x04000D38 RID: 3384
FUNC_NONVIRTUAL,
/// <summary>The function is accessed by static address and does not take an implicit this pointer.</summary>
// Token: 0x04000D39 RID: 3385
FUNC_STATIC,
/// <summary>The function can be accessed only through IDispatch.</summary>
// Token: 0x04000D3A RID: 3386
FUNC_DISPATCH
}
}