14 lines
291 B
C#
14 lines
291 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Net.NetworkInformation.MacOsStructs
|
|
{
|
|
// Token: 0x02000195 RID: 405
|
|
internal struct in6_addr
|
|
{
|
|
// Token: 0x04000C67 RID: 3175
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
|
public byte[] u6_addr8;
|
|
}
|
|
}
|