Victor Mororó

Results 2 issues of Victor Mororó

- [x] Tested on an x11 machine - [ ] Compilation warnings were addressed - [x] `cargo fmt` has been run on this branch - [x] `cargo doc` builds successfully...

`src/xinput2.rs` doesn't have the translation for the XIMaskLen macro. ```c #define XIMaskLen(event) (((event) >> 3) + 1) ``` That should be implemented as: ```rust pub fn XIMaskLen(event: i32) -> usize...