use crateFixed;
/// Encoder/Digital Crown press button code.
pub const KEY_ROTARY_PRESS: u32 = 0x0100;
/// Hardware button base code; concrete buttons are `KEY_HW_BUTTON_0..N`.
pub const KEY_HW_BUTTON_0: u32 = 0x0200;
/// Raw input event produced by the platform layer (Surface).
///
/// Pointer events carry an `id: u8` so multi-touch can be wired in
/// later; `id == 0` is the single-pointer / mouse path. Rotary covers
/// the encoder / Digital Crown family. Hardware buttons share the
/// `Key` variant via well-known codes.