Merge pull request #15 from nowakf/relativeaxis

Missing constants for relative axes
This commit is contained in:
Corey Richardson 2019-07-01 00:24:57 -07:00 committed by GitHub
commit f85abbf1df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,6 +145,10 @@ bitflags! {
const REL_DIAL = 1 << 0x07,
const REL_WHEEL = 1 << 0x08,
const REL_MISC = 1 << 0x09,
const REL_RESERVED = 1 << 0x0a,
const REL_WHEEL_HI_RES = 1 << 0x0b,
const REL_HWHEEL_HI_RES = 1 << 0x0c,
const REL_MAX = 1 << 0x0f,
}
}