mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-02-22 23:24:36 +01:00
9 lines
223 B
C#
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);
|
||
|
|
}
|