Handoff implemented ... but registry is not shared because we're using processes instead of threads, hence it doesn't work.

This commit is contained in:
Michael Jumper
2010-09-18 02:11:51 -07:00
parent 16d335aa19
commit 49131fae1b
6 changed files with 98 additions and 17 deletions

View File

@@ -42,7 +42,6 @@ typedef struct GUACIO {
} GUACIO;
GUACIO* guac_open(int fd);
void guac_transfer(GUACIO* io, int fd);
ssize_t guac_write_int(GUACIO* io, unsigned int i);
ssize_t guac_write_string(GUACIO* io, const char* str);
ssize_t guac_write_base64(GUACIO* io, const void* buf, size_t count);

View File

@@ -38,6 +38,7 @@ typedef struct guac_instruction {
void guac_free_instruction(guac_instruction* instruction);
char* guac_escape_string(const char* str);
char* guac_unescape_string_inplace(char* str);
char* guac_decode_base64_inplace(char* str);
void guac_send_name(GUACIO* io, const char* name);
void guac_send_error(GUACIO* io, const char* error);
void guac_send_clipboard(GUACIO* io, const char* data);