diff options
author | kraxel <kraxel> | 2006-10-30 15:50:24 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2006-10-30 15:50:24 +0000 |
commit | b0b7aac6a182502230ecadf0e37f24b220c3b450 (patch) | |
tree | abaef77f9a1b210cc84c050233667102167ebe67 /vnc.h | |
parent | 16928d0f1b55cd0adb39450f1fbd122e6aac3f5e (diff) | |
download | xenwatch-b0b7aac6a182502230ecadf0e37f24b220c3b450.tar.gz |
misc vnc fixes
Diffstat (limited to 'vnc.h')
-rw-r--r-- | vnc.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,2 +1,6 @@ -GtkWidget *vnc_open(char *hostname, int displayno, - int standalone, int uskbd, int debug); +#define VNC_FLAG_STANDALONE (1 << 1) +#define VNC_FLAG_US_KBD (1 << 2) +#define VNC_FLAG_SHOW_MOUSE (1 << 3) + +GtkWidget *vnc_open(char *hostname, int displayno, unsigned long flags, + int debug_level); |