SDRSharper/SDRSharper.Radio/SDRSharp.Radio/IComplexFir.cs

8 lines
117 B
C#
Raw Normal View History

namespace SDRSharp.Radio
{
public interface IComplexFir
{
unsafe void Process(Complex* buffer, int length);
}
}