--- sourceforge.net/trunk/rdesktop/proto.h 2001/06/20 13:54:48 28 +++ sourceforge.net/trunk/rdesktop/proto.h 2001/09/15 12:34:34 33 @@ -35,6 +35,8 @@ void *xmalloc(int size); void *xrealloc(void *oldmem, int size); void xfree(void *mem); +void error(char *format, ...); +void unimpl(char *format, ...); void hexdump(unsigned char *p, unsigned int len); /* rdp.c */ void rdp_out_unistr(STREAM s, char *string, int len); @@ -61,7 +63,7 @@ /* xwin.c */ BOOL ui_create_window(char *title); void ui_destroy_window(void); -void ui_process_events(void); +void ui_select(int rdp_socket); void ui_move_pointer(int x, int y); HBITMAP ui_create_bitmap(int width, int height, uint8 *data); void ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 *data);