SDRSharper/SDRSharper.Common/SDRSharp.Common/ISharpPlugin.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

27 lines
266 B
C#

using System.Windows.Forms;
namespace SDRSharp.Common
{
public interface ISharpPlugin
{
bool HasGui
{
get;
}
UserControl GuiControl
{
get;
}
string DisplayName
{
get;
}
void Initialize(ISharpControl control);
void Close();
}
}