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"); +}