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,22 @@
using System;
using System.Runtime.InteropServices;
namespace System.Net.NetworkInformation
{
// Token: 0x020001C6 RID: 454
[StructLayout(LayoutKind.Explicit)]
internal struct AlignmentUnion
{
// Token: 0x04000D34 RID: 3380
[FieldOffset(0)]
public ulong Alignment;
// Token: 0x04000D35 RID: 3381
[FieldOffset(0)]
public int Length;
// Token: 0x04000D36 RID: 3382
[FieldOffset(4)]
public int IfIndex;
}
}