Client-side cursor (initial)

This commit is contained in:
Michael Jumper
2010-09-07 00:15:36 -07:00
parent 8bd6d947d7
commit a8fac57159
3 changed files with 136 additions and 3 deletions

View File

@@ -22,6 +22,7 @@ void guac_send_name(GUACIO* io, const char* name);
void guac_send_size(GUACIO* io, int w, int h);
void guac_send_copy(GUACIO* io, int srcx, int srcy, int w, int h, int dstx, int dsty);
void guac_send_png(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h);
void guac_send_cursor(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h);
int guac_instructions_waiting(GUACIO* io);
guac_instruction* guac_read_instruction(GUACIO* io);