mirror of
https://github.com/RGBCube/serenity
synced 2025-10-29 21:52:41 +00:00
This reverts commit 61a385fc01.
The commit broke the shift and caps lock key from working.
19 lines
282 B
C++
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 };
|
|
};
|
|
|
|
}
|