SDRSharper/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqReadAsyncDelegate.cs

9 lines
222 B
C#
Raw Normal View History

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