mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-04-21 06:13:41 +00:00
8 lines
135 B
C#
8 lines
135 B
C#
|
|
namespace SDRSharp.Radio
|
||
|
|
{
|
||
|
|
public interface IIQProcessor : IBaseProcessor
|
||
|
|
{
|
||
|
|
unsafe void Process(Complex* buffer, int length);
|
||
|
|
}
|
||
|
|
}
|