Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jul 1997 09:51:28 +0100 (BST)
From:      Developer <dev@flevel.co.uk>
To:        freebsd-hackers@freebsd.org
Subject:   Any ideas?
Message-ID:  <Pine.BSF.3.95q.970702095035.19015A-100000@fgate.flevel.co.uk>

next in thread | raw e-mail | index | archive | help

I know this is a bit off topic, but any ideas why this code does not move
the pointer:-

int main(int argc,char** argv)
{
 Window root;
 Display *display;
 char* displayname=NULL;
 int screen;

 display=XOpenDisplay(displayname);
 if (!display) exit(0);

 screen=DefaultScreen(display);
 root=VirtualRootWindow(display,screen);

 XWarpPointer(display,NULL,NULL,0,0,0,0,100,100);
}
 
Cheers.

Trefor S.





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.95q.970702095035.19015A-100000>