naps2/NAPS2.Sdk/Platform/WindowsSystemCompat.cs
Ben Olden-Cooligan b62100fb07 Remove unused usings
No longer keeping System, System.Collections.Generic, System.Linq
2019-07-14 11:26:56 -04:00

20 lines
456 B
C#

using NAPS2.Dependencies;
namespace NAPS2.Platform
{
public class WindowsSystemCompat : ISystemCompat
{
public bool IsWiaDriverSupported => true;
public bool IsWia20Supported => PlatformSupport.ModernWindows.Validate();
public bool IsTwainDriverSupported => true;
public bool IsSaneDriverSupported => false;
public bool CanUseWin32 => true;
public bool UseUnixFontResolver => false;
}
}