Defined guac_rdp_bitmap.
authorMichael Jumper <zhangmaike@users.sourceforge.net>
Tue, 3 Jan 2012 02:25:04 +0000 (18:25 -0800)
committerMichael Jumper <zhangmaike@users.sourceforge.net>
Tue, 3 Jan 2012 02:25:04 +0000 (18:25 -0800)
include/rdp_bitmap.h

index 2314ce8..9e6d0f0 100644 (file)
 
 #include <freerdp/freerdp.h>
 
+#include <guacamole/protocol.h>
+
+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