blob: 5d22e63cad70c5e0e2a7e4407621e3707598faed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _X11VNC_UNIXPW_H
#define _X11VNC_UNIXPW_H
/* -- unixpw.h -- */
extern void unixpw_screen(int init);
extern void unixpw_keystroke(rfbBool down, rfbKeySym keysym, int init);
extern void unixpw_accept(void);
extern void unixpw_deny(void);
extern int unixpw_in_progress;
extern time_t unixpw_last_try_time;
extern rfbClientPtr unixpw_client;
#endif /* _X11VNC_UNIXPW_H */
|