mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-04-05 06:25:12 +00:00
8 lines
223 B
C#
8 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);
|
|
}
|