summaryrefslogtreecommitdiffstats
path: root/libxrdp/libxrdp.c
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2012-05-20 21:14:15 -0700
committerJay Sorg <jay.sorg@gmail.com>2012-05-20 21:14:15 -0700
commitd88291c9ddc4abc81ae68897faaafcc91f6a6e86 (patch)
tree74eccdb284fed0ffd7c9d6493745652e51808fc9 /libxrdp/libxrdp.c
parentaa3fad894db4e9b02999b229eb7e63fd8e91bdf6 (diff)
downloadxrdp-proprietary-d88291c9ddc4abc81ae68897faaafcc91f6a6e86.tar.gz
xrdp-proprietary-d88291c9ddc4abc81ae68897faaafcc91f6a6e86.zip
-xorg: work on off screen bitmaps
Diffstat (limited to 'libxrdp/libxrdp.c')
-rw-r--r--libxrdp/libxrdp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c
index 9e206c2c..4985bbe2 100644
--- a/libxrdp/libxrdp.c
+++ b/libxrdp/libxrdp.c
@@ -758,10 +758,12 @@ libxrdp_orders_send_brush(struct xrdp_session* session,
/*****************************************************************************/
int EXPORT_CC
libxrdp_orders_send_create_os_surface(struct xrdp_session* session, int id,
- int width, int height)
+ int width, int height, int num_del_list,
+ int* del_list)
{
return xrdp_orders_send_create_os_surface
- ((struct xrdp_orders*)(session->orders), id, width, height);
+ ((struct xrdp_orders*)(session->orders), id, width, height,
+ num_del_list, del_list);
}
/*****************************************************************************/