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,21 @@
using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.SYSKIND" /> instead.</summary>
// Token: 0x0200033C RID: 828
[Obsolete]
[Serializable]
public enum SYSKIND
{
/// <summary>The target operating system for the type library is 16-bit Windows systems. By default, data fields are packed.</summary>
// Token: 0x04000DA2 RID: 3490
SYS_WIN16,
/// <summary>The target operating system for the type library is 32-bit Windows systems. By default, data fields are naturally aligned (for example, 2-byte integers are aligned on even-byte boundaries; 4-byte integers are aligned on quad-word boundaries, and so on). </summary>
// Token: 0x04000DA3 RID: 3491
SYS_WIN32,
/// <summary>The target operating system for the type library is Apple Macintosh. By default, all data fields are aligned on even-byte boundaries.</summary>
// Token: 0x04000DA4 RID: 3492
SYS_MAC
}
}