keyboard-keynames 0.1.2

A crate to query the os for key names for scancodes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The KeyLayout struct and supporting elements
#[cfg(target_os = "linux")]
#[path = "unix/mod.rs"]
mod platform;

#[cfg(target_os = "windows")]
#[path = "windows/mod.rs"]
mod platform;

#[cfg(not(any(target_os = "windows", target_os = "linux")))]
#[path = "other/mod.rs"]
mod platform;

pub use self::platform::key_layout::*;