9 lines
277 B
C#
Raw Normal View History

2021-05-19 14:38:48 +08:00
using System;
using System.Runtime.InteropServices;
namespace Assets.Scripts.Ble.CPPBridge
{
[UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = false)]
internal delegate void WCL_NOTIFY_EVENT([MarshalAs(UnmanagedType.SysInt)][In] IntPtr sender);
}