blob: 7034631f21774c89b9b314ae5d2de420bcc58791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _X11VNC_POINTER_H
#define _X11VNC_POINTER_H
/* -- pointer.h -- */
extern int pointer_queued_sent;
extern void initialize_pointer_map(char *pointer_remap);
extern void do_button_mask_change(int mask, int button);
extern void pointer(int mask, int x, int y, rfbClientPtr client);
extern int check_pipeinput(void);
extern void initialize_pipeinput(void);
#endif /* _X11VNC_POINTER_H */
|