mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-05-21 06:45:38 -06:00
fix a compiler warning
This commit is contained in:
parent
18edb0dbad
commit
b472b56b10
1 changed files with 3 additions and 3 deletions
|
|
@ -4,9 +4,9 @@ use std::{
|
|||
};
|
||||
|
||||
// FIXME
|
||||
pub(crate) const BTN_LEFT: u32 = 0x110;
|
||||
pub(crate) const BTN_RIGHT: u32 = 0x111;
|
||||
pub(crate) const BTN_MIDDLE: u32 = 0x112;
|
||||
pub const BTN_LEFT: u32 = 0x110;
|
||||
pub const BTN_RIGHT: u32 = 0x111;
|
||||
pub const BTN_MIDDLE: u32 = 0x112;
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub enum PointerEvent {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue