Defined guac_rdp_bitmap.

This commit is contained in:
Michael Jumper 2012-01-02 18:25:04 -08:00
parent 22d6231aeb
commit cf4d9b0c5e

View File

@ -40,6 +40,22 @@
#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