41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
// Copyright 2016-2018 Mateusz Sieczko and other GilRs Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
|
|
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
|
|
// http://opensource.org/licenses/MIT>, at your option. This file may not be
|
|
// copied, modified, or distributed except according to those terms.
|
|
|
|
pub const BTN_UNKNOWN: u16 = 0;
|
|
|
|
pub const BTN_SOUTH: u16 = 1;
|
|
pub const BTN_EAST: u16 = 2;
|
|
pub const BTN_C: u16 = 3;
|
|
pub const BTN_NORTH: u16 = 4;
|
|
pub const BTN_WEST: u16 = 5;
|
|
pub const BTN_Z: u16 = 6;
|
|
pub const BTN_LT: u16 = 7;
|
|
pub const BTN_RT: u16 = 8;
|
|
pub const BTN_LT2: u16 = 9;
|
|
pub const BTN_RT2: u16 = 10;
|
|
pub const BTN_SELECT: u16 = 11;
|
|
pub const BTN_START: u16 = 12;
|
|
pub const BTN_MODE: u16 = 13;
|
|
pub const BTN_LTHUMB: u16 = 14;
|
|
pub const BTN_RTHUMB: u16 = 15;
|
|
|
|
pub const BTN_DPAD_UP: u16 = 16;
|
|
pub const BTN_DPAD_DOWN: u16 = 17;
|
|
pub const BTN_DPAD_LEFT: u16 = 18;
|
|
pub const BTN_DPAD_RIGHT: u16 = 19;
|
|
|
|
pub const AXIS_UNKNOWN: u16 = 0;
|
|
|
|
pub const AXIS_LSTICKX: u16 = 1;
|
|
pub const AXIS_LSTICKY: u16 = 2;
|
|
pub const AXIS_LEFTZ: u16 = 3;
|
|
pub const AXIS_RSTICKX: u16 = 4;
|
|
pub const AXIS_RSTICKY: u16 = 5;
|
|
pub const AXIS_RIGHTZ: u16 = 6;
|
|
pub const AXIS_DPADX: u16 = 7;
|
|
pub const AXIS_DPADY: u16 = 8;
|