summaryrefslogtreecommitdiffstats
path: root/libxrdp/libxrdp.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2006-03-17 01:10:24 +0000
committerjsorg71 <jsorg71>2006-03-17 01:10:24 +0000
commitb91f25deef43cce2d528e2e121dab32941735dea (patch)
tree0c178b06bfe37acf36675456971d67625e419781 /libxrdp/libxrdp.c
parentb475ff2c83299fee8baed228f13a337d25a0fa1f (diff)
downloadxrdp-proprietary-b91f25deef43cce2d528e2e121dab32941735dea.tar.gz
xrdp-proprietary-b91f25deef43cce2d528e2e121dab32941735dea.zip
bitmap cache v2
Diffstat (limited to 'libxrdp/libxrdp.c')
-rw-r--r--libxrdp/libxrdp.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c
index 0d69ab01..8a02c7f7 100644
--- a/libxrdp/libxrdp.c
+++ b/libxrdp/libxrdp.c
@@ -578,3 +578,25 @@ libxrdp_reset(struct xrdp_session* session,
libxrdp_process_data(session);
return 0;
}
+
+/*****************************************************************************/
+int EXPORT_CC
+libxrdp_orders_send_raw_bitmap2(struct xrdp_session* session,
+ int width, int height, int bpp, char* data,
+ int cache_id, int cache_idx)
+{
+ return xrdp_orders_send_raw_bitmap2((struct xrdp_orders*)session->orders,
+ width, height, bpp, data,
+ cache_id, cache_idx);
+}
+
+/*****************************************************************************/
+int EXPORT_CC
+libxrdp_orders_send_bitmap2(struct xrdp_session* session,
+ int width, int height, int bpp, char* data,
+ int cache_id, int cache_idx)
+{
+ return xrdp_orders_send_bitmap2((struct xrdp_orders*)session->orders,
+ width, height, bpp, data,
+ cache_id, cache_idx);
+}