--- sourceforge.net/trunk/rdesktop/proto.h 2005/08/25 20:43:45 990 +++ sourceforge.net/branches/seamlessrdp-branch/rdesktop/proto.h 2006/03/10 08:50:43 1089 @@ -50,9 +50,8 @@ void channel_send(STREAM s, VCHANNEL * channel); void channel_process(STREAM s, uint16 mcs_channel); /* cliprdr.c */ -void cliprdr_send_text_format_announce(void); -void cliprdr_send_blah_format_announce(void); -void cliprdr_send_native_format_announce(uint8 * data, uint32 length); +void cliprdr_send_simple_native_format_announce(uint32 format); +void cliprdr_send_native_format_announce(uint8 * formats_data, uint32 formats_data_length); void cliprdr_send_data_request(uint32 format); void cliprdr_send_data(uint8 * data, uint32 length); BOOL cliprdr_init(void); @@ -117,6 +116,9 @@ void hexdump(unsigned char *p, unsigned int len); char *next_arg(char *src, char needle); void toupper_str(char *p); +BOOL str_startswith(const char *s, const char *prefix); +BOOL str_handle_lines(const char *input, char **rest, str_handle_lines_t linehandler, void *data); +BOOL subprocess(char *const argv[], str_handle_lines_t linehandler, void *data); char *l_to_a(long N, int base); int load_licence(unsigned char **data); void save_licence(unsigned char *data, int length); @@ -269,6 +271,18 @@ void ui_desktop_restore(uint32 offset, int x, int y, int cx, int cy); void ui_begin_update(void); void ui_end_update(void); +void ui_seamless_toggle(void); +void ui_seamless_create_window(unsigned long id, unsigned long flags); +void ui_seamless_destroy_window(unsigned long id, unsigned long flags); +void ui_seamless_move_window(unsigned long id, int x, int y, int width, int height, + unsigned long flags); +void ui_seamless_settitle(unsigned long id, const char *title); +void ui_seamless_setstate(unsigned long id, unsigned int state, unsigned long flags); +/* lspci.c */ +BOOL lspci_init(void); +/* seamless.c */ +BOOL seamless_init(void); +void seamless_send_sync(void); /* *INDENT-OFF* */ #ifdef __cplusplus