mirror of
https://github.com/snltty/linker.git
synced 2025-10-30 12:06:49 +08:00
27 lines
506 B
C#
27 lines
506 B
C#
namespace cmonitor.client.reports.active
|
|
{
|
|
public sealed class ActiveWindowLinux : IActiveWindow
|
|
{
|
|
public void DisallowRun(string[] names)
|
|
{
|
|
|
|
}
|
|
|
|
public ActiveWindowInfo GetActiveWindow()
|
|
{
|
|
return new ActiveWindowInfo();
|
|
}
|
|
|
|
public int GetWindowCount()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public Dictionary<uint, string> GetWindows()
|
|
{
|
|
return new Dictionary<uint, string>();
|
|
}
|
|
|
|
}
|
|
}
|