| 30 | } |
| 31 | |
| 32 | void freeInput(void *p) { |
| 33 | auto *input = (input_raw_t *) p; |
| 34 | delete input; |
| 35 | } |
| 36 | |
| 37 | void move_mouse(input_t &input, int deltaX, int deltaY) { |
| 38 | auto raw = (input_raw_t *) input.get(); |
nothing calls this directly
no outgoing calls
no test coverage detected