Cosmos/source/Cosmos.HAL/ScanMapBase.cs
2015-08-09 15:37:56 +02:00

13 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.HAL
{
public abstract class ScanMapBase
{
public abstract KeyEvent ConvertScanCode(byte scan, bool ctrl, bool shift, bool alt, bool num, bool caps, bool scroll);
}
}