mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-02 06:29:56 +01:00
8 lines
117 B
C#
8 lines
117 B
C#
namespace SDRSharp.Radio
|
|
{
|
|
public interface IComplexFir
|
|
{
|
|
unsafe void Process(Complex* buffer, int length);
|
|
}
|
|
}
|