This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32/KeyboardReader.cs

19 lines
469 B
C#
Raw Normal View History

2020-05-25 19:32:53 +02:00
using System.Windows.Forms;
using CC_Functions.W32.Native;
2019-10-05 17:52:14 +02:00
namespace CC_Functions.W32
{
public static class KeyboardReader
{
public static bool IsKeyDown(Keys key)
{
2019-12-22 16:58:16 +01:00
int state = 0;
short retVal = user32.GetKeyState((int) key);
if ((retVal & 0x8000) == 0x8000)
state |= 1;
if ((retVal & 1) == 1)
state |= 2;
return (state & 1) == 1;
2019-10-05 17:52:14 +02:00
}
}
2019-11-29 21:27:24 +01:00
}