mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
21 lines
233 B
C#
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|