summaryrefslogtreecommitdiffstats
path: root/vnc
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-07-07 03:36:56 +0000
committerjsorg71 <jsorg71>2005-07-07 03:36:56 +0000
commit7ad052552763f883ff00d59d077b6f552b3a200a (patch)
tree89ed3e0f9a4abe994be348092cf64bc9b37377e9 /vnc
parentef1be2c6d3251139a50e1cf5c5e812741471b34a (diff)
downloadxrdp-proprietary-7ad052552763f883ff00d59d077b6f552b3a200a.tar.gz
xrdp-proprietary-7ad052552763f883ff00d59d077b6f552b3a200a.zip
added clipping functions to the mod interface
Diffstat (limited to 'vnc')
-rw-r--r--vnc/vnc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/vnc/vnc.h b/vnc/vnc.h
index 53c9beff..92ba5f70 100644
--- a/vnc/vnc.h
+++ b/vnc/vnc.h
@@ -50,6 +50,8 @@ struct vnc
int (*server_palette)(struct vnc* v, int* palette);
int (*server_msg)(struct vnc* v, char* msg);
int (*server_is_term)(struct vnc* v);
+ int (*server_set_clip)(struct vnc* v, int x, int y, int cx, int cy);
+ int (*server_reset_clip)(struct vnc* v);
/* common */
long handle; /* pointer to self as long */
long wm;