Added clipboard support.

This commit is contained in:
Michael Jumper
2010-09-11 14:53:28 -07:00
parent 72ba6fcaa0
commit e1a6378607
7 changed files with 118 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ typedef struct guac_client {
void (*handle_messages)(struct guac_client* client);
void (*mouse_handler)(struct guac_client* client, int x, int y, int button_mask);
void (*key_handler)(struct guac_client* client, int keysym, int pressed);
void (*clipboard_handler)(struct guac_client* client, char* copied);
void (*free_handler)(void* client);
} guac_client;