| 1857 | } |
| 1858 | #[repr(C)] |
| 1859 | pub struct Input { |
| 1860 | pub mx: usize, |
| 1861 | pub my: usize, |
| 1862 | pub keys: [u8; 1024], |
| 1863 | pub history_last_index: usize, |
| 1864 | pub history_ring: [InputEvent; HISTORY_SIZE], |
| 1865 | } |
| 1866 | |
| 1867 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 1868 | #[repr(C)] |
nothing calls this directly
no outgoing calls
no test coverage detected