How to set mouse cursor position in C on linux?
08:40 12 Mar 2010

how can I set the mouse cursor position in an X window using a C program under Linux? thanks :) (like setcursorpos() in WIN)

EDIT: I've tried this code, but doesn't work:

#include 

main(){
 move(100, 100);
 refresh();
}
c linux pointers position x11