File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -1060,8 +1060,15 @@ IF_OPER_TESTING
1060
1060
IF_OPER_UNKNOWN
1061
1061
IF_OPER_UP
1062
1062
IMAXBEL
1063
+ INPUT_PROP_ACCELEROMETER
1064
+ INPUT_PROP_BUTTONPAD
1063
1065
INPUT_PROP_CNT
1066
+ INPUT_PROP_DIRECT
1064
1067
INPUT_PROP_MAX
1068
+ INPUT_PROP_POINTER
1069
+ INPUT_PROP_POINTING_STICK
1070
+ INPUT_PROP_SEMI_MT
1071
+ INPUT_PROP_TOPBUTTONPAD
1065
1072
IN_ACCESS
1066
1073
IN_ALL_EVENTS
1067
1074
IN_ATTRIB
Original file line number Diff line number Diff line change @@ -5052,6 +5052,13 @@ pub const FF_MAX: __u16 = 0x7f;
5052
5052
pub const FF_CNT : usize = FF_MAX as usize + 1 ;
5053
5053
5054
5054
// linux/input-event-codes.h
5055
+ pub const INPUT_PROP_POINTER : __u16 = 0x00 ;
5056
+ pub const INPUT_PROP_DIRECT : __u16 = 0x01 ;
5057
+ pub const INPUT_PROP_BUTTONPAD : __u16 = 0x02 ;
5058
+ pub const INPUT_PROP_SEMI_MT : __u16 = 0x03 ;
5059
+ pub const INPUT_PROP_TOPBUTTONPAD : __u16 = 0x04 ;
5060
+ pub const INPUT_PROP_POINTING_STICK : __u16 = 0x05 ;
5061
+ pub const INPUT_PROP_ACCELEROMETER : __u16 = 0x06 ;
5055
5062
pub const INPUT_PROP_MAX : __u16 = 0x1f ;
5056
5063
pub const INPUT_PROP_CNT : usize = INPUT_PROP_MAX as usize + 1 ;
5057
5064
pub const EV_MAX : __u16 = 0x1f ;
You can’t perform that action at this time.
0 commit comments