DotNet-Flemmotron/NibblePoker.Win32Bindings/WinUser/SendKeys/EKeyEventFlags.cs
Herwin Bozet 6a706fbdb8 Removed non-CC0 documentation
Update EEventTypes.cs, EKeyEventFlags.cs, and EMouseEventFlags.cs
2025-01-19 23:13:01 +01:00

12 lines
364 B
C#

namespace NibblePoker.Win32Bindings.WinUser.SendKeys;
// ReSharper disable InconsistentNaming
[Flags]
public enum EKeyEventFlags : uint {
// https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-keybdinput
KEYEVENTF_EXTENDEDKEY = 0x0001,
KEYEVENTF_KEYUP = 0x0002,
KEYEVENTF_SCANCODE = 0x0004,
KEYEVENTF_UNICODE = 0x0008,
}