input_event_codes/
lib.rs

1//! Linux input event codes form `linux/input_event_codes.h`.
2#![allow(non_snake_case)]
3#![cfg(any(target_os = "android", target_os = "linux"))]
4#![no_std]
5
6mod abs;
7mod ev;
8mod input_prop;
9mod key;
10mod led;
11mod msc;
12mod rel;
13mod rep;
14mod snd;
15mod sw;
16mod syn;