From de8c64a03a2fd827d590912b0af91e40baefec3f Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 10 Apr 2014 15:42:46 -0700 Subject: [PATCH] GUAC-614: Remove old prototypes from RDP guac handlers. --- src/protocols/rdp/guac_handlers.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/protocols/rdp/guac_handlers.h b/src/protocols/rdp/guac_handlers.h index b0775daf..582fcaad 100644 --- a/src/protocols/rdp/guac_handlers.h +++ b/src/protocols/rdp/guac_handlers.h @@ -34,22 +34,5 @@ int rdp_guac_client_handle_messages(guac_client* client); int rdp_guac_client_mouse_handler(guac_client* client, int x, int y, int mask); int rdp_guac_client_key_handler(guac_client* client, int keysym, int pressed); -int rdp_guac_client_clipboard_handler(guac_client* client, guac_stream*, - char* mimetype); - -int rdp_guac_client_file_handler(guac_client* client, guac_stream* stream, - char* mimetype, char* filename); - -int rdp_guac_client_pipe_handler(guac_client* client, guac_stream* stream, - char* mimetype, char* name); - -int rdp_guac_client_blob_handler(guac_client* client, guac_stream* stream, - void* data, int length); - -int rdp_guac_client_end_handler(guac_client* client, guac_stream* stream); - -int rdp_guac_client_ack_handler(guac_client* client, guac_stream* stream, - char* message, guac_protocol_status status); - #endif