From eb613bd71e5d24086d0708a116b63412ce15141c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 17 Aug 2011 12:31:20 -0700 Subject: [PATCH] Restored missing functions (palette). --- protocols/rdp/src/rdp_handlers.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/protocols/rdp/src/rdp_handlers.c b/protocols/rdp/src/rdp_handlers.c index be3faa30..c227c2d0 100644 --- a/protocols/rdp/src/rdp_handlers.c +++ b/protocols/rdp/src/rdp_handlers.c @@ -616,4 +616,12 @@ void guac_rdp_ui_channel_data(rdpInst* inst, int chan_id, char* data, int data_s guac_log_info("guac_rdp_ui_channel_data: STUB\n"); } +RD_HPALETTE guac_rdp_ui_create_palette(rdpInst* inst, RD_PALETTE* colours) { + guac_log_info("guac_rdp_ui_create_palette: STUB\n"); + return NULL; +} + +void guac_rdp_ui_set_palette(rdpInst* inst, RD_HPALETTE map) { + guac_log_info("guac_rdp_ui_set_palette: STUB\n"); +}