Move mouse pointer (relative)
| 163 | |
| 164 | // Move mouse pointer (relative) |
| 165 | void move (Display *display, int x, int y) |
| 166 | { |
| 167 | XWarpPointer (display, None, None, 0,0,0,0, x, y); |
| 168 | XFlush (display); |
| 169 | |
| 170 | } |
| 171 | |
| 172 | // Move mouse pointer (absolute) |
| 173 | void move_to (Display *display, int x, int y) |
no outgoing calls
no test coverage detected