summaryrefslogtreecommitdiffstats
path: root/vnc/vnc.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2008-04-03 06:43:30 +0000
committerjsorg71 <jsorg71>2008-04-03 06:43:30 +0000
commitd061537be9463c74261eb53e76c92c3b9c1376a0 (patch)
tree4e0b712b2a87350da97e488ee69fd781fd3ab32e /vnc/vnc.h
parentfee6f82bf7bf049ad2cad8e4dab85dad4d3986db (diff)
downloadxrdp-proprietary-d061537be9463c74261eb53e76c92c3b9c1376a0.tar.gz
xrdp-proprietary-d061537be9463c74261eb53e76c92c3b9c1376a0.zip
added new wait_obj functions
Diffstat (limited to 'vnc/vnc.h')
-rw-r--r--vnc/vnc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/vnc/vnc.h b/vnc/vnc.h
index f7642daf..1d664eb3 100644
--- a/vnc/vnc.h
+++ b/vnc/vnc.h
@@ -38,7 +38,11 @@ struct vnc
int (*mod_signal)(struct vnc* v);
int (*mod_end)(struct vnc* v);
int (*mod_set_param)(struct vnc* v, char* name, char* value);
- long mod_dumby[100 - 6]; /* align, 100 minus the number of mod
+ int (*mod_session_change)(struct vnc* v, int, int);
+ int (*mod_get_wait_objs)(struct vnc* v, tbus* read_objs, int* rcount,
+ tbus* write_objs, int* wcount, int* timeout);
+ int (*mod_check_wait_objs)(struct vnc* v);
+ long mod_dumby[100 - 9]; /* align, 100 minus the number of mod
functions above */
/* server functions */
int (*server_begin_update)(struct vnc* v);
@@ -107,4 +111,5 @@ struct vnc
int clip_chanid;
char* clip_data;
int clip_data_size;
+ tbus sck_obj;
};