mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
41 lines
431 B
C#
41 lines
431 B
C#
using System.Windows.Forms;
|
|
|
|
namespace SDRSharp.Radio
|
|
{
|
|
public interface IFrontendController
|
|
{
|
|
bool IsSoundCardBased
|
|
{
|
|
get;
|
|
}
|
|
|
|
string SoundCardHint
|
|
{
|
|
get;
|
|
}
|
|
|
|
double Samplerate
|
|
{
|
|
get;
|
|
}
|
|
|
|
long Frequency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
void Open();
|
|
|
|
void Start(SamplesAvailableDelegate callback);
|
|
|
|
void Stop();
|
|
|
|
void Close();
|
|
|
|
void ShowSettingGUI(IWin32Window parent);
|
|
|
|
void HideSettingGUI();
|
|
}
|
|
}
|