diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-07-17 15:24:11 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-07-17 15:24:11 -0700 |
commit | 62777d43b19f5e07790562e4338c9a2b378def51 (patch) | |
tree | 49da1baf37690d7bc9c6b8b5e49727e4eda9c7a8 /libxrdp/libxrdp.h | |
parent | e4182cde17c8d71120f497d7811839ddbe800186 (diff) | |
download | xrdp-proprietary-62777d43b19f5e07790562e4338c9a2b378def51.tar.gz xrdp-proprietary-62777d43b19f5e07790562e4338c9a2b378def51.zip |
work on bitmap cache v3
Diffstat (limited to 'libxrdp/libxrdp.h')
-rw-r--r-- | libxrdp/libxrdp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libxrdp/libxrdp.h b/libxrdp/libxrdp.h index 7792d157..82f7eed1 100644 --- a/libxrdp/libxrdp.h +++ b/libxrdp/libxrdp.h @@ -119,6 +119,7 @@ struct xrdp_rdp int mcs_channel; struct xrdp_client_info client_info; void* mppc_enc; + void* rfx_enc; }; /* state */ @@ -387,6 +388,10 @@ xrdp_orders_send_bitmap2(struct xrdp_orders* self, int width, int height, int bpp, char* data, int cache_id, int cache_idx, int hints); int APP_CC +xrdp_orders_send_bitmap3(struct xrdp_orders* self, + int width, int height, int bpp, char* data, + int cache_id, int cache_idx, int hints); +int APP_CC xrdp_orders_send_brush(struct xrdp_orders* self, int width, int height, int bpp, int type, int size, char* data, int cache_id); int APP_CC |