mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01: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);
|
|
}
|
|
}
|