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

21 lines
233 B
C#

using SDRSharp.Radio;
using System;
namespace SDRSharp.RTLSDR
{
public sealed class SamplesAvailableEventArgs : EventArgs
{
public int Length
{
get;
set;
}
public unsafe Complex* Buffer
{
get;
set;
}
}
}