mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-05 16:00:00 +01:00
14 lines
153 B
C#
14 lines
153 B
C#
|
|
namespace SDRSharp.Radio
|
||
|
|
{
|
||
|
|
public enum WindowType
|
||
|
|
{
|
||
|
|
None,
|
||
|
|
Hamming,
|
||
|
|
Blackman,
|
||
|
|
BlackmanHarris4,
|
||
|
|
BlackmanHarris7,
|
||
|
|
HannPoisson,
|
||
|
|
Youssef
|
||
|
|
}
|
||
|
|
}
|