diff options
author | runge <runge> | 2007-02-10 21:52:26 +0000 |
---|---|---|
committer | runge <runge> | 2007-02-10 21:52:26 +0000 |
commit | 90d96b971f04b11fe1902091a94be94697738766 (patch) | |
tree | 8331ed14521fd8e7b997465d6f482d521f4537cb /x11vnc/pointer.c | |
parent | 76720eb71bb18ec452ec1782af9f8b8d09e77efc (diff) | |
download | libtdevnc-90d96b971f04b11fe1902091a94be94697738766.tar.gz libtdevnc-90d96b971f04b11fe1902091a94be94697738766.zip |
x11vnc: watch textchat, etc in unixpw, implement kbdReleaseAllKeys, setSingleWindow, setServerInput. watch for OpenGL apps breaking XDAMAGE.
Diffstat (limited to 'x11vnc/pointer.c')
-rw-r--r-- | x11vnc/pointer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11vnc/pointer.c b/x11vnc/pointer.c index 66c7241..3f5db81 100644 --- a/x11vnc/pointer.c +++ b/x11vnc/pointer.c @@ -25,10 +25,10 @@ void do_button_mask_change(int mask, int button); void pointer(int mask, int x, int y, rfbClientPtr client); void initialize_pipeinput(void); int check_pipeinput(void); +void update_x11_pointer_position(int x, int y); static void buttonparse(int from, char **s); -static void update_x11_pointer_position(int x, int y); static void update_x11_pointer_mask(int mask); static void pipe_pointer(int mask, int x, int y, rfbClientPtr client); @@ -301,7 +301,7 @@ void initialize_pointer_map(char *pointer_remap) { /* * Send a pointer position event to the X server. */ -static void update_x11_pointer_position(int x, int y) { +void update_x11_pointer_position(int x, int y) { #if NO_X11 RAWFB_RET_VOID if (!x || !y) {} |