(x int, y int, buttons uint8)
| 85 | } |
| 86 | |
| 87 | func rpcAbsMouseReport(x int, y int, buttons uint8) error { |
| 88 | return rpcHidReport(func() error { return gadget.AbsMouseReport(x, y, buttons) }) |
| 89 | } |
| 90 | |
| 91 | func rpcRelMouseReport(dx int8, dy int8, buttons uint8) error { |
| 92 | return rpcHidReport(func() error { return gadget.RelMouseReport(dx, dy, buttons) }) |
no test coverage detected