22 lines
500 B
C#
22 lines
500 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 GattServices
|
|
{
|
|
// Token: 0x04001360 RID: 4960
|
|
[MarshalAs(UnmanagedType.U1)]
|
|
public byte Count;
|
|
|
|
// Token: 0x04001361 RID: 4961
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 255)]
|
|
public GattService[] Services;
|
|
}
|
|
}
|