SDRSharper/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

9 lines
223 B
C#

using System;
using System.Runtime.InteropServices;
namespace SDRSharp.RTLSDR
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public unsafe delegate void RtlSdrReadAsyncDelegate(byte* buf, uint len, IntPtr ctx);
}