/* * Copyright (c) 2023, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Kernel { struct ScanCodeEvent { u32 scan_code_value { 0 }; bool pressed { false }; bool e0_prefix { false }; }; }