SDRSharper/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs

9 lines
223 B
C#
Raw Normal View History

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