1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-29 21:52:41 +00:00
serenity/Kernel/Devices/HID/ScanCodeEvent.h
Andrew Kaster d3025668a4 Revert "Kernel+Userland: Implement support for PS2 scan code set 2"
This reverts commit 61a385fc01.

The commit broke the shift and caps lock key from working.
2023-12-29 22:02:19 +01:00

19 lines
282 B
C++

/*
* Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace Kernel {
struct ScanCodeEvent {
u32 scan_code_value { 0 };
bool pressed { false };
bool e0_prefix { false };
};
}