2021-06-04 13:22:59 +08:00

9 lines
277 B
C#

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);
}