Fix build: Add missing constant

This commit is contained in:
Johannes Leupolz 2026-03-27 09:59:18 +00:00
parent 88737be70b
commit 7182cac6fc

View file

@ -21,6 +21,7 @@ pub const EV_SYN: u16 = 0x00;
pub const EV_KEY: u16 = 0x01;
pub const EV_REL: u16 = 0x02;
pub const EV_ABS: u16 = 0x03;
pub const EV_FF: u16 = 0x15;
/// Trait for input devices
pub trait Device {