diff options
author | jsorg71 <jsorg71> | 2008-06-24 05:43:10 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-06-24 05:43:10 +0000 |
commit | bfe555e3b6ad96df9ab45365305d1ef463c3f015 (patch) | |
tree | 7be1450fb6430acfc82566caedb6f83620c5e0d8 /libxrdp/libxrdp.c | |
parent | 756fcef1c8e4748b4a0c5b616d7afd7347aa6d5d (diff) | |
download | xrdp-proprietary-bfe555e3b6ad96df9ab45365305d1ef463c3f015.tar.gz xrdp-proprietary-bfe555e3b6ad96df9ab45365305d1ef463c3f015.zip |
added brush cache bits for clients that support it
Diffstat (limited to 'libxrdp/libxrdp.c')
-rw-r--r-- | libxrdp/libxrdp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index 70e88646..d46b0a08 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -716,3 +716,14 @@ libxrdp_send_to_channel(struct xrdp_session* session, int channel_id, free_stream(s); return 0; } + +/*****************************************************************************/ +int EXPORT_CC +libxrdp_orders_send_brush(struct xrdp_session* session, + int width, int height, int bpp, int type, + int size, char* data, int cache_id) +{ + return xrdp_orders_send_brush((struct xrdp_orders*)session->orders, + width, height, bpp, type, size, data, + cache_id); +} |