using System; namespace System.Runtime.InteropServices { /// Use instead. // Token: 0x0200033C RID: 828 [Obsolete] [Serializable] public enum SYSKIND { /// The target operating system for the type library is 16-bit Windows systems. By default, data fields are packed. // Token: 0x04000DA2 RID: 3490 SYS_WIN16, /// 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). // Token: 0x04000DA3 RID: 3491 SYS_WIN32, /// The target operating system for the type library is Apple Macintosh. By default, all data fields are aligned on even-byte boundaries. // Token: 0x04000DA4 RID: 3492 SYS_MAC } }