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,19 @@
using System;
using System.Runtime.InteropServices;
namespace System.Net.NetworkInformation
{
// Token: 0x0200018A RID: 394
internal struct Win32_MIBICMPSTATS_EX
{
// Token: 0x04000C33 RID: 3123
public uint Msgs;
// Token: 0x04000C34 RID: 3124
public uint Errors;
// Token: 0x04000C35 RID: 3125
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)]
public uint[] Counts;
}
}