diff options
author | jsorg71 <jsorg71> | 2008-04-03 06:43:30 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-04-03 06:43:30 +0000 |
commit | d061537be9463c74261eb53e76c92c3b9c1376a0 (patch) | |
tree | 4e0b712b2a87350da97e488ee69fd781fd3ab32e /vnc/vnc.h | |
parent | fee6f82bf7bf049ad2cad8e4dab85dad4d3986db (diff) | |
download | xrdp-proprietary-d061537be9463c74261eb53e76c92c3b9c1376a0.tar.gz xrdp-proprietary-d061537be9463c74261eb53e76c92c3b9c1376a0.zip |
added new wait_obj functions
Diffstat (limited to 'vnc/vnc.h')
-rw-r--r-- | vnc/vnc.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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; }; |