21 lines
436 B
C#
21 lines
436 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 GattService
|
|
{
|
|
// Token: 0x0400135E RID: 4958
|
|
public GattUuid Uuid;
|
|
|
|
// Token: 0x0400135F RID: 4959
|
|
[MarshalAs(UnmanagedType.U2)]
|
|
public ushort Handle;
|
|
}
|
|
}
|