SDRSharper/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs

21 lines
233 B
C#
Raw Normal View History

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