mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-03 15:09:57 +01:00
8 lines
135 B
C#
8 lines
135 B
C#
namespace SDRSharp.Radio
|
|
{
|
|
public interface IRealProcessor : IBaseProcessor
|
|
{
|
|
unsafe void Process(float* buffer, int length);
|
|
}
|
|
}
|