From cf4d9b0c5ebe5825084aef48b3b9517d64e0b14f Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 2 Jan 2012 18:25:04 -0800 Subject: [PATCH] Defined guac_rdp_bitmap. --- protocols/rdp/include/rdp_bitmap.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/protocols/rdp/include/rdp_bitmap.h b/protocols/rdp/include/rdp_bitmap.h index 2314ce8e..9e6d0f02 100644 --- a/protocols/rdp/include/rdp_bitmap.h +++ b/protocols/rdp/include/rdp_bitmap.h @@ -40,6 +40,22 @@ #include +#include + +typedef struct guac_rdp_bitmap { + + /** + * FreeRDP bitmap data - MUST GO FIRST. + */ + rdpBitmap bitmap; + + /** + * Guacamole layer containing cached image data. + */ + guac_layer* layer; + +} guac_rdp_bitmap; + void guac_rdp_bitmap_new(rdpContext* context, rdpBitmap* bitmap); #endif