22 lines
511 B
C#
22 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Ble.Win.CPPBridge
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
internal struct GattCharacteristics
|
|
{
|
|
// Token: 0x0400135C RID: 4956
|
|
[MarshalAs(UnmanagedType.U1)]
|
|
public byte Count;
|
|
|
|
// Token: 0x0400135D RID: 4957
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 255)]
|
|
public GattCharacteristic[] Chars;
|
|
}
|
|
}
|