pub mod ev {
pub const SYN: u16 = 0x00;
pub const KEY: u16 = 0x01;
pub const REL: u16 = 0x02;
pub const ABS: u16 = 0x03;
}
pub mod syn {
pub const REPORT: u16 = 0;
pub const DROPPED: u16 = 3;
}
pub mod rel {
pub const X: u16 = 0x00;
pub const Y: u16 = 0x01;
pub const HWHEEL: u16 = 0x06;
pub const WHEEL: u16 = 0x08;
}
pub mod abs {
pub const X: u16 = 0x00;
pub const Y: u16 = 0x01;
pub const MT_SLOT: u16 = 0x2f;
pub const MT_POSITION_X: u16 = 0x35;
pub const MT_POSITION_Y: u16 = 0x36;
pub const MT_TRACKING_ID: u16 = 0x39;
}
pub mod btn {
pub const LEFT: u16 = 0x110;
pub const RIGHT: u16 = 0x111;
pub const MIDDLE: u16 = 0x112;
pub const TOUCH: u16 = 0x14a;
}
pub mod key_value {
pub const UP: i32 = 0;
pub const DOWN: i32 = 1;
pub const REPEAT: i32 = 2;
}