9 lines
277 B
C#
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);
|
|
}
|